MediaWiki

Difference between revisions of "VoicesGeographicData.js"

(Created page with " /* ************** #defaultView:Map PREFIX ll: <https://lingualibre.org/entity/> PREFIX llt: <https://lingualibre.org/prop/direct/> # Print all avaialble to upper scope (*) SE...")
 
m
Line 1: Line 1:
  
 
/* **************
 
/* **************
#defaultView:Map
+
#defaultView:Table
 +
# Same can apply to languages :
 +
# Q3→Q4  : items speaker and language
 +
# P14→P12 : items WD location and WD language
 +
# P5→P4 : properties speaker and languages
 +
# P625→P1098 : properties location and population
 +
 
 
PREFIX ll: <https://lingualibre.org/entity/>
 
PREFIX ll: <https://lingualibre.org/entity/>
 
PREFIX llt: <https://lingualibre.org/prop/direct/>
 
PREFIX llt: <https://lingualibre.org/prop/direct/>
# Print all avaialble to upper scope (*)
+
 
SELECT DISTINCT ?speakerLabel ?locationQid ?coord ?records (SAMPLE(?layer) AS ?layer)
+
SELECT DISTINCT ?itemLabel ?wikidata (?info AS ?coordinates) ?records (SAMPLE(?tag) AS ?layer)
# On Lingualibre, get speaker's location
+
# On Lingualibre, get item's info
 
WITH {
 
WITH {
 
   SELECT *
 
   SELECT *
 
   WHERE {
 
   WHERE {
     SERVICE <https://lingualibre.org/sparql> {  
+
     SERVICE <https://lingualibre.org/sparql> {   # Commented on LLQS only
       SELECT DISTINCT ?speakerLabel ?locationQid (COUNT(?record) AS ?records)  
+
       SELECT DISTINCT ?itemLabel ?wikidata (COUNT(?record) AS ?records)  
 
       {
 
       {
         ?speaker llt:P2 ll:Q3 ;
+
         ?item llt:P2 ll:Q3 ;
                 rdfs:label ?speakerLabel;
+
                 rdfs:label ?itemLabel;
                 llt:P14 ?locationQid .
+
                 llt:P14 ?wikidata .
         ?record llt:P5 ?speaker .
+
         ?record llt:P5 ?item .
         FILTER (LANG(?speakerLabel)='en')
+
         FILTER (LANG(?itemLabel)='en')
         FILTER (regex(?locationQid, '^Q'))
+
         FILTER (regex(?wikidata, '^Q'))
       } GROUP BY ?speakerLabel ?locationQid
+
       } GROUP BY ?itemLabel ?wikidata
     }
+
     }           # Commented on LLQS only
 
   }
 
   }
} AS %locationWikidataId
+
} AS %infoWikidataId
# On Wikidata, get their geo-coordinates
+
# On Wikidata, get the target info
 
WHERE {
 
WHERE {
   INCLUDE %locationWikidataId
+
   INCLUDE %infoWikidataId
   BIND (URI(CONCAT("http://www.wikidata.org/entity/", ?locationQid)) AS ?locationURL)
+
   BIND (URI(CONCAT("http://www.wikidata.org/entity/", ?wikidata)) AS ?infoURL)
 
   SERVICE <https://query.wikidata.org/sparql> {  
 
   SERVICE <https://query.wikidata.org/sparql> {  
 
     SELECT * {  
 
     SELECT * {  
       ?locationURL wdt:P625 ?coord ;
+
       ?infoURL wdt:P625 ?info .
                  rdfs:label ?locationQidLabel
 
        FILTER (LANG(?locationQidLabel)='en')
 
 
     }  
 
     }  
 
   }
 
   }
Line 41: Line 45:
 
     IF(?records < 50000, "25k-50k",
 
     IF(?records < 50000, "25k-50k",
 
     ">50k")))))
 
     ">50k")))))
     AS ?layer) .
+
     AS ?tag) .
 
}  
 
}  
GROUP BY ?speakerLabel ?locationQid ?coord ?records
+
GROUP BY ?itemLabel ?wikidata ?info ?records
 
ORDER BY DESC (?records)
 
ORDER BY DESC (?records)
 
************** */
 
************** */
 
[
 
[
 
   {
 
   {
     "speakerLabel": "Titodutta",
+
     "itemLabel": "Titodutta",
     "locationQid": "Q1348",
+
     "wikidata": "Q1348",
     "coord": "Point(88.3638815 22.5726723)",
+
     "coordinates": "Point(88.3638815 22.5726723)",
 
     "records": "55355",
 
     "records": "55355",
 
     "layer": ">50k"
 
     "layer": ">50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Olaf",
+
     "itemLabel": "Olaf",
     "locationQid": "Q270",
+
     "wikidata": "Q270",
     "coord": "Point(21.011111111 52.23)",
+
     "coordinates": "Point(21.011111111 52.23)",
 
     "records": "54331",
 
     "records": "54331",
 
     "layer": ">50k"
 
     "layer": ">50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Psubhashish",
+
     "itemLabel": "Psubhashish",
     "locationQid": "Q22048",
+
     "wikidata": "Q22048",
     "coord": "Point(85.5 20.15)",
+
     "coordinates": "Point(85.5 20.15)",
 
     "records": "50859",
 
     "records": "50859",
 
     "layer": ">50k"
 
     "layer": ">50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "WikiLucas00",
+
     "itemLabel": "WikiLucas00",
     "locationQid": "Q456",
+
     "wikidata": "Q456",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "50575",
 
     "records": "50575",
 
     "layer": ">50k"
 
     "layer": ">50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Lepticed7",
+
     "itemLabel": "Lepticed7",
     "locationQid": "Q7880",
+
     "wikidata": "Q7880",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "44461",
 
     "records": "44461",
 
     "layer": "25k-50k"
 
     "layer": "25k-50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Lyokoï",
+
     "itemLabel": "Lyokoï",
     "locationQid": "Q456",
+
     "wikidata": "Q456",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "34209",
 
     "records": "34209",
 
     "layer": "25k-50k"
 
     "layer": "25k-50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LoquaxFR",
+
     "itemLabel": "LoquaxFR",
     "locationQid": "Q3105",
+
     "wikidata": "Q3105",
     "coord": "Point(6.416666666 48.166666666)",
+
     "coordinates": "Point(6.416666666 48.166666666)",
 
     "records": "31261",
 
     "records": "31261",
 
     "layer": "25k-50k"
 
     "layer": "25k-50k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Davidgrosclaude",
+
     "itemLabel": "Davidgrosclaude",
     "locationQid": "Q213763",
+
     "wikidata": "Q213763",
     "coord": "Point(-0.366667 43.3)",
+
     "coordinates": "Point(-0.366667 43.3)",
 
     "records": "24137",
 
     "records": "24137",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tohaomg",
+
     "itemLabel": "Tohaomg",
     "locationQid": "Q1899",
+
     "wikidata": "Q1899",
     "coord": "Point(30.523611111 50.45)",
+
     "coordinates": "Point(30.523611111 50.45)",
 
     "records": "18002",
 
     "records": "18002",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Poslovitch",
+
     "itemLabel": "Poslovitch",
     "locationQid": "Q821240",
+
     "wikidata": "Q821240",
     "coord": "Point(6.839166666 47.963055555)",
+
     "coordinates": "Point(6.839166666 47.963055555)",
 
     "records": "16987",
 
     "records": "16987",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "KlaudiuMihaila",
+
     "itemLabel": "KlaudiuMihaila",
     "locationQid": "Q46852",
+
     "wikidata": "Q46852",
     "coord": "Point(27.588888888 47.162222222)",
+
     "coordinates": "Point(27.588888888 47.162222222)",
 
     "records": "15480",
 
     "records": "15480",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "DenisdeShawi",
+
     "itemLabel": "DenisdeShawi",
     "locationQid": "Q141980",
+
     "wikidata": "Q141980",
     "coord": "Point(-72.75 46.5667)",
+
     "coordinates": "Point(-72.75 46.5667)",
 
     "records": "13076",
 
     "records": "13076",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Poemat",
+
     "itemLabel": "Poemat",
     "locationQid": "Q270",
+
     "wikidata": "Q270",
     "coord": "Point(21.011111111 52.23)",
+
     "coordinates": "Point(21.011111111 52.23)",
     "records": "12699",
+
     "records": "12900",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sebastian Wallroth",
+
     "itemLabel": "Sebastian Wallroth",
     "locationQid": "Q64",
+
     "wikidata": "Q64",
     "coord": "Point(13.383333333 52.516666666)",
+
     "coordinates": "Point(13.383333333 52.516666666)",
 
     "records": "7959",
 
     "records": "7959",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Guilhelma",
+
     "itemLabel": "Guilhelma",
     "locationQid": "Q624805",
+
     "wikidata": "Q624805",
     "coord": "Point(2.715277777 43.325)",
+
     "coordinates": "Point(2.715277777 43.325)",
     "records": "7461",
+
     "records": "7525",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Moonhouse",
+
     "itemLabel": "Moonhouse",
     "locationQid": "Q34",
+
     "wikidata": "Q34",
     "coord": "Point(15.0 61.0)",
+
     "coordinates": "Point(15.0 61.0)",
 
     "records": "6884",
 
     "records": "6884",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Pamputt",
+
     "itemLabel": "Luilui6666",
     "locationQid": "Q837748",
+
    "wikidata": "Q8646",
     "coord": "Point(2.307777777 48.609444444)",
+
    "coordinates": "Point(114.158611111 22.278333333)",
 +
    "records": "6198",
 +
    "layer": "5k-25k"
 +
  },
 +
  {
 +
    "itemLabel": "Pamputt",
 +
     "wikidata": "Q837748",
 +
     "coordinates": "Point(2.307777777 48.609444444)",
 
     "records": "5502",
 
     "records": "5502",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mecanautes",
+
     "itemLabel": "Mecanautes",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "5154",
 
     "records": "5154",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Robin van der Vliet",
+
     "itemLabel": "Robin van der Vliet",
     "locationQid": "Q15981302",
+
     "wikidata": "Q15981302",
     "coord": "Point(5.72111 51.8067)",
+
     "coordinates": "Point(5.72111 51.8067)",
 
     "records": "5125",
 
     "records": "5125",
 
     "layer": "5k-25k"
 
     "layer": "5k-25k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "KaMan",
+
     "itemLabel": "KaMan",
     "locationQid": "Q36",
+
     "wikidata": "Q36",
     "coord": "Point(19.0 52.0)",
+
     "coordinates": "Point(19.0 52.0)",
 
     "records": "4899",
 
     "records": "4899",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "VictorDtmtc",
+
     "itemLabel": "VictorDtmtc",
     "locationQid": "Q40898",
+
     "wikidata": "Q40898",
     "coord": "Point(6.183611111 48.692777777)",
+
     "coordinates": "Point(6.183611111 48.692777777)",
 
     "records": "4651",
 
     "records": "4651",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Marreromarco",
+
     "itemLabel": "Marreromarco",
     "locationQid": "Q717",
+
     "wikidata": "Q717",
     "coord": "Point(-67.0 8.0)",
+
     "coordinates": "Point(-67.0 8.0)",
 
     "records": "4328",
 
     "records": "4328",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "DSwissK",
+
     "itemLabel": "DSwissK",
     "locationQid": "Q834",
+
     "wikidata": "Q834",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "4260",
 
     "records": "4260",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "SangeetaRH",
+
     "itemLabel": "SangeetaRH",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "3998",
 
     "records": "3998",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zinou2go",
+
     "itemLabel": "Zinou2go",
     "locationQid": "Q338844",
+
     "wikidata": "Q338844",
     "coord": "Point(6.166666666 35.55)",
+
     "coordinates": "Point(6.166666666 35.55)",
 
     "records": "3812",
 
     "records": "3812",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gaurav Jhammat",
+
     "itemLabel": "Gaurav Jhammat",
     "locationQid": "Q33377",
+
     "wikidata": "Q33377",
     "coord": "Point(75.579166666 31.325555555)",
+
     "coordinates": "Point(75.579166666 31.325555555)",
 
     "records": "3801",
 
     "records": "3801",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eihel",
+
     "itemLabel": "Eihel",
     "locationQid": "Q807",
+
     "wikidata": "Q807",
     "coord": "Point(6.633333333 46.533333333)",
+
     "coordinates": "Point(6.633333333 46.533333333)",
 
     "records": "3605",
 
     "records": "3605",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Benoît Prieur",
+
     "itemLabel": "Benoît Prieur",
     "locationQid": "Q11981",
+
     "wikidata": "Q11981",
     "coord": "Point(4.975277777 45.830277777)",
+
     "coordinates": "Point(4.975277777 45.830277777)",
 
     "records": "3472",
 
     "records": "3472",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Manjusha Gore",
+
     "itemLabel": "Manjusha Gore",
     "locationQid": "Q5289983",
+
     "wikidata": "Q5289983",
     "coord": "Point(73.0869 19.218218)",
+
     "coordinates": "Point(73.0869 19.218218)",
 
     "records": "3109",
 
     "records": "3109",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tatiana Kerbush",
+
     "itemLabel": "Tatiana Kerbush",
     "locationQid": "Q656",
+
     "wikidata": "Q656",
     "coord": "Point(30.316666666 59.95)",
+
     "coordinates": "Point(30.316666666 59.95)",
 
     "records": "3099",
 
     "records": "3099",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yahya",
+
     "itemLabel": "Yahya",
     "locationQid": "Q902",
+
     "wikidata": "Q902",
     "coord": "Point(89.866667 24.016667)",
+
     "coordinates": "Point(89.866667 24.016667)",
 
     "records": "3087",
 
     "records": "3087",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Cinemantique",
+
     "itemLabel": "Cinemantique",
     "locationQid": "Q159",
+
     "wikidata": "Q159",
     "coord": "Point(94.25 66.416666666)",
+
     "coordinates": "Point(94.25 66.416666666)",
 
     "records": "2894",
 
     "records": "2894",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jules78120",
+
     "itemLabel": "Jules78120",
     "locationQid": "Q12820",
+
     "wikidata": "Q12820",
     "coord": "Point(1.916666666 48.833333333)",
+
     "coordinates": "Point(1.916666666 48.833333333)",
 
     "records": "2743",
 
     "records": "2743",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Natschoba",
+
     "itemLabel": "Natschoba",
     "locationQid": "Q183",
+
     "wikidata": "Q183",
     "coord": "Point(10.0 51.0)",
+
     "coordinates": "Point(10.0 51.0)",
 
     "records": "2733",
 
     "records": "2733",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LangPao",
+
     "itemLabel": "LangPao",
     "locationQid": "Q38",
+
     "wikidata": "Q38",
     "coord": "Point(12.5 42.5)",
+
     "coordinates": "Point(12.5 42.5)",
 
     "records": "2699",
 
     "records": "2699",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nelson Ricardo 2500",
+
     "itemLabel": "Nelson Ricardo 2500",
     "locationQid": "Q30",
+
     "wikidata": "Q30",
     "coord": "Point(-98.5795 39.828175)",
+
     "coordinates": "Point(-98.5795 39.828175)",
 
     "records": "2693",
 
     "records": "2693",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "0x010C",
+
     "itemLabel": "0x010C",
     "locationQid": "Q147987",
+
     "wikidata": "Q147987",
     "coord": "Point(7.473611111 48.102222222)",
+
     "coordinates": "Point(7.473611111 48.102222222)",
 
     "records": "2684",
 
     "records": "2684",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Xabier Cañas",
+
     "itemLabel": "Xabier Cañas",
     "locationQid": "Q10313",
+
     "wikidata": "Q10313",
     "coord": "Point(-1.98 43.32)",
+
     "coordinates": "Point(-1.98 43.32)",
 
     "records": "2540",
 
     "records": "2540",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Oesjaar",
+
     "itemLabel": "Oesjaar",
     "locationQid": "Q34647",
+
     "wikidata": "Q34647",
     "coord": "Point(28.041638888 -26.204361111)",
+
     "coordinates": "Point(28.041638888 -26.204361111)",
 
     "records": "2517",
 
     "records": "2517",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Arlo Barnes",
+
     "itemLabel": "Arlo Barnes",
     "locationQid": "Q1801743",
+
     "wikidata": "Q1801743",
     "coord": "Point(-105.881 35.4861)",
+
     "coordinates": "Point(-105.881 35.4861)",
 
     "records": "2448",
 
     "records": "2448",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Back ache",
+
     "itemLabel": "Back ache",
     "locationQid": "Q84",
+
     "wikidata": "Q84",
     "coord": "Point(-0.1275 51.507222222)",
+
     "coordinates": "Point(-0.1275 51.507222222)",
 
     "records": "2295",
 
     "records": "2295",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Millars",
+
     "itemLabel": "Millars",
     "locationQid": "Q12292",
+
     "wikidata": "Q12292",
     "coord": "Point(-0.101388888 39.937777777)",
+
     "coordinates": "Point(-0.101388888 39.937777777)",
 
     "records": "2281",
 
     "records": "2281",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Santamarcanda",
+
     "itemLabel": "Santamarcanda",
     "locationQid": "Q36433",
+
     "wikidata": "Q36433",
     "coord": "Point(-8.610777777 41.149472222)",
+
     "coordinates": "Point(-8.610777777 41.149472222)",
 
     "records": "2220",
 
     "records": "2220",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bjankuloski06",
+
     "itemLabel": "Bjankuloski06",
     "locationQid": "Q384",
+
     "wikidata": "Q384",
     "coord": "Point(21.433333333 41.983333333)",
+
     "coordinates": "Point(21.433333333 41.983333333)",
 
     "records": "1947",
 
     "records": "1947",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nattes à chat",
+
     "itemLabel": "Nattes à chat",
     "locationQid": "Q71",
+
     "wikidata": "Q71",
     "coord": "Point(6.15 46.2)",
+
     "coordinates": "Point(6.15 46.2)",
 
     "records": "1794",
 
     "records": "1794",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Exilexi",
+
     "itemLabel": "Exilexi",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1792",
 
     "records": "1792",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "GrandCelinien",
+
     "itemLabel": "GrandCelinien",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1780",
 
     "records": "1780",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Spotless Mind1988",
+
     "itemLabel": "Spotless Mind1988",
     "locationQid": "Q338844",
+
     "wikidata": "Q338844",
     "coord": "Point(6.166666666 35.55)",
+
     "coordinates": "Point(6.166666666 35.55)",
 
     "records": "1651",
 
     "records": "1651",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ltrlg",
+
     "itemLabel": "Ltrlg",
     "locationQid": "Q1384064",
+
     "wikidata": "Q1384064",
     "coord": "Point(-0.495 47.4675)",
+
     "coordinates": "Point(-0.495 47.4675)",
 
     "records": "1648",
 
     "records": "1648",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Neelima64",
+
     "itemLabel": "Neelima64",
     "locationQid": "Q1191",
+
     "wikidata": "Q1191",
     "coord": "Point(76.42 19.56)",
+
     "coordinates": "Point(76.42 19.56)",
 
     "records": "1637",
 
     "records": "1637",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Simplificationalizer",
+
     "itemLabel": "Simplificationalizer",
     "locationQid": "Q1408",
+
     "wikidata": "Q1408",
     "coord": "Point(-74.5 40.0)",
+
     "coordinates": "Point(-74.5 40.0)",
 
     "records": "1632",
 
     "records": "1632",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jest Spoczko",
+
     "itemLabel": "Jest Spoczko",
     "locationQid": "Q857331",
+
     "wikidata": "Q857331",
     "coord": "Point(16.623 50.69075)",
+
     "coordinates": "Point(16.623 50.69075)",
 
     "records": "1632",
 
     "records": "1632",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rominf",
+
     "itemLabel": "Rominf",
     "locationQid": "Q1757",
+
     "wikidata": "Q1757",
     "coord": "Point(24.93417 60.17556)",
+
     "coordinates": "Point(24.93417 60.17556)",
 
     "records": "1617",
 
     "records": "1617",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "T. Le Berre",
+
     "itemLabel": "T. Le Berre",
     "locationQid": "Q12545",
+
     "wikidata": "Q12545",
     "coord": "Point(3.877230555 43.610919444)",
+
     "coordinates": "Point(3.877230555 43.610919444)",
 
     "records": "1608",
 
     "records": "1608",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AdrianAbdulBaha",
+
     "itemLabel": "AdrianAbdulBaha",
     "locationQid": "Q1953",
+
     "wikidata": "Q1953",
     "coord": "Point(44.514444444 40.181388888)",
+
     "coordinates": "Point(44.514444444 40.181388888)",
 
     "records": "1579",
 
     "records": "1579",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Anonymât",
+
     "itemLabel": "Anonymât",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "1434",
 
     "records": "1434",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Touam",
+
     "itemLabel": "Touam",
     "locationQid": "Q42716",
+
     "wikidata": "Q42716",
     "coord": "Point(4.389722222 45.433888888)",
+
     "coordinates": "Point(4.389722222 45.433888888)",
 
     "records": "1362",
 
     "records": "1362",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kunokuno",
+
     "itemLabel": "Kunokuno",
     "locationQid": "Q928",
+
     "wikidata": "Q928",
     "coord": "Point(123.0 12.0)",
+
     "coordinates": "Point(123.0 12.0)",
 
     "records": "1355",
 
     "records": "1355",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Filosoful",
+
     "itemLabel": "Filosoful",
     "locationQid": "Q168057",
+
     "wikidata": "Q168057",
     "coord": "Point(23.816666666 44.333333333)",
+
     "coordinates": "Point(23.816666666 44.333333333)",
 
     "records": "1348",
 
     "records": "1348",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Unjoanqualsevol",
+
     "itemLabel": "Unjoanqualsevol",
     "locationQid": "Q16697",
+
     "wikidata": "Q16697",
     "coord": "Point(1.829166666 41.726388888)",
+
     "coordinates": "Point(1.829166666 41.726388888)",
 
     "records": "1345",
 
     "records": "1345",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Arthur Crbz",
+
     "itemLabel": "Arthur Crbz",
     "locationQid": "Q18678265",
+
     "wikidata": "Q18678265",
     "coord": "Point(2.343568369 43.648785141)",
+
     "coordinates": "Point(2.343568369 43.648785141)",
 
     "records": "1235",
 
     "records": "1235",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jessica Nguyen",
+
     "itemLabel": "Jessica Nguyen",
     "locationQid": "Q1854",
+
     "wikidata": "Q1854",
     "coord": "Point(106.633333333 10.816666666)",
+
     "coordinates": "Point(106.633333333 10.816666666)",
 
     "records": "1231",
 
     "records": "1231",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Citoyenovice",
+
     "itemLabel": "Reda Kerbouche",
     "locationQid": "Q142",
+
     "wikidata": "Q338844",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(6.166666666 35.55)",
 
     "records": "1131",
 
     "records": "1131",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Reda Kerbouche",
+
     "itemLabel": "Citoyenovice",
     "locationQid": "Q338844",
+
     "wikidata": "Q142",
     "coord": "Point(6.166666666 35.55)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "1131",
 
     "records": "1131",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Totodu74",
+
     "itemLabel": "Totodu74",
     "locationQid": "Q829407",
+
     "wikidata": "Q829407",
     "coord": "Point(6.2075 46.185)",
+
     "coordinates": "Point(6.2075 46.185)",
 
     "records": "1107",
 
     "records": "1107",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aparna Gondhalekar",
+
     "itemLabel": "Aparna Gondhalekar",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "1104",
 
     "records": "1104",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Frank C. Müller",
+
     "itemLabel": "Frank C. Müller",
     "locationQid": "Q1794",
+
     "wikidata": "Q1794",
     "coord": "Point(8.679722222 50.113611111)",
+
     "coordinates": "Point(8.679722222 50.113611111)",
 
     "records": "1050",
 
     "records": "1050",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "X-Javier",
+
     "itemLabel": "X-Javier",
     "locationQid": "Q274249",
+
     "wikidata": "Q274249",
     "coord": "Point(2.276388888 48.730555555)",
+
     "coordinates": "Point(2.276388888 48.730555555)",
 
     "records": "1037",
 
     "records": "1037",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Khalil.rantissi",
+
     "itemLabel": "Khalil.rantissi",
     "locationQid": "Q1218",
+
     "wikidata": "Q1218",
     "coord": "Point(35.216666666 31.783333333)",
+
     "coordinates": "Point(35.216666666 31.783333333)",
 
     "records": "1028",
 
     "records": "1028",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Penegal",
+
     "itemLabel": "Penegal",
     "locationQid": "Q3105",
+
     "wikidata": "Q3105",
     "coord": "Point(6.416666666 48.166666666)",
+
     "coordinates": "Point(6.416666666 48.166666666)",
 
     "records": "1026",
 
     "records": "1026",
 
     "layer": "1k-5k"
 
     "layer": "1k-5k"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zardabi Bakuvi",
+
     "itemLabel": "Zardabi Bakuvi",
     "locationQid": "Q9248",
+
     "wikidata": "Q9248",
     "coord": "Point(49.835183333 40.366655555)",
+
     "coordinates": "Point(49.835183333 40.366655555)",
 
     "records": "994",
 
     "records": "994",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "नंदिनी रानडे",
+
     "itemLabel": "नंदिनी रानडे",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "991",
 
     "records": "991",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jagwar",
+
     "itemLabel": "Jagwar",
     "locationQid": "Q1019",
+
     "wikidata": "Q1019",
     "coord": "Point(47.0 -20.0)",
+
     "coordinates": "Point(47.0 -20.0)",
 
     "records": "932",
 
     "records": "932",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Madehub",
+
     "itemLabel": "Madehub",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "895",
 
     "records": "895",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Le Commissaire",
+
     "itemLabel": "Le Commissaire",
     "locationQid": "Q1142",
+
     "wikidata": "Q1142",
     "coord": "Point(7.5 48.5)",
+
     "coordinates": "Point(7.5 48.5)",
 
     "records": "881",
 
     "records": "881",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Avatea",
+
     "itemLabel": "Avatea",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "859",
 
     "records": "859",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Xenophôn",
+
     "itemLabel": "Xenophôn",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "851",
 
     "records": "851",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "XANA000",
+
     "itemLabel": "XANA000",
     "locationQid": "Q386661",
+
     "wikidata": "Q386661",
     "coord": "Point(139.491111111 35.338833333)",
+
     "coordinates": "Point(139.491111111 35.338833333)",
 
     "records": "809",
 
     "records": "809",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Afsham23",
+
     "itemLabel": "Afsham23",
     "locationQid": "Q84",
+
     "wikidata": "Q84",
     "coord": "Point(-0.1275 51.507222222)",
+
     "coordinates": "Point(-0.1275 51.507222222)",
 
     "records": "799",
 
     "records": "799",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Akopoly",
+
     "itemLabel": "Akopoly",
     "locationQid": "Q312209",
+
     "wikidata": "Q312209",
     "coord": "Point(9.233333333 4.166666666)",
+
     "coordinates": "Point(9.233333333 4.166666666)",
 
     "records": "775",
 
     "records": "775",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ives",
+
     "itemLabel": "Ives",
     "locationQid": "Q62587",
+
     "wikidata": "Q62587",
     "coord": "Point(2.847222222 43.228611111)",
+
     "coordinates": "Point(2.847222222 43.228611111)",
 
     "records": "744",
 
     "records": "744",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jason.nlw",
+
     "itemLabel": "Jason.nlw",
     "locationQid": "Q213154",
+
     "wikidata": "Q213154",
     "coord": "Point(-4.066666666 52.416666666)",
+
     "coordinates": "Point(-4.066666666 52.416666666)",
 
     "records": "742",
 
     "records": "742",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "विनया लुकतुके",
+
     "itemLabel": "विनया लुकतुके",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "725",
 
     "records": "725",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Key Mîrza",
+
     "itemLabel": "Key Mîrza",
     "locationQid": "Q83061",
+
     "wikidata": "Q83061",
     "coord": "Point(43.416666666 38.501944444)",
+
     "coordinates": "Point(43.416666666 38.501944444)",
 
     "records": "704",
 
     "records": "704",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ThonyVezbe",
+
     "itemLabel": "ThonyVezbe",
     "locationQid": "Q327",
+
     "wikidata": "Q327",
     "coord": "Point(-3.0 48.0)",
+
     "coordinates": "Point(-3.0 48.0)",
 
     "records": "692",
 
     "records": "692",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Taousert",
+
     "itemLabel": "Taousert",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "691",
 
     "records": "691",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Webfil",
+
     "itemLabel": "Webfil",
     "locationQid": "Q141652",
+
     "wikidata": "Q141652",
     "coord": "Point(-71.033333333 46.45)",
+
     "coordinates": "Point(-71.033333333 46.45)",
 
     "records": "671",
 
     "records": "671",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fabricio Cardenas",
+
     "itemLabel": "Fabricio Cardenas",
     "locationQid": "Q6643",
+
     "wikidata": "Q6643",
     "coord": "Point(2.751388888 42.488055555)",
+
     "coordinates": "Point(2.751388888 42.488055555)",
 
     "records": "648",
 
     "records": "648",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fhala.K",
+
     "itemLabel": "Fhala.K",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "643",
 
     "records": "643",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Opsylac",
+
     "itemLabel": "Opsylac",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "612",
 
     "records": "612",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jauvert Laura",
+
     "itemLabel": "Jauvert Laura",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "570",
 
     "records": "570",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ThineCupOverfloweth",
+
     "itemLabel": "ThineCupOverfloweth",
     "locationQid": "Q36",
+
     "wikidata": "Q36",
     "coord": "Point(19.0 52.0)",
+
     "coordinates": "Point(19.0 52.0)",
 
     "records": "564",
 
     "records": "564",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Igboanude",
+
     "itemLabel": "Igboanude",
     "locationQid": "Q3817714",
+
     "wikidata": "Q3817714",
     "coord": "Point(7.5 6.5)",
+
     "coordinates": "Point(7.5 6.5)",
 
     "records": "563",
 
     "records": "563",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ElsaBornFree",
+
     "itemLabel": "Ériugena",
     "locationQid": "Q1639355",
+
     "wikidata": "Q22890",
     "coord": "Point(-1.9474769 43.2815684)",
+
     "coordinates": "Point(-8.0 53.333333333)",
 
     "records": "550",
 
     "records": "550",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ériugena",
+
     "itemLabel": "ElsaBornFree",
     "locationQid": "Q22890",
+
     "wikidata": "Q1639355",
     "coord": "Point(-8.0 53.333333333)",
+
     "coordinates": "Point(-1.9474769 43.2815684)",
 
     "records": "550",
 
     "records": "550",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Psychoslave",
+
     "itemLabel": "Psychoslave",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "520",
 
     "records": "520",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eric.LEWIN",
+
     "itemLabel": "Eric.LEWIN",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "520",
 
     "records": "520",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Persepha",
+
     "itemLabel": "Persepha",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "482",
 
     "records": "482",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Lucas Werkmeister",
+
     "itemLabel": "Lucas Werkmeister",
     "locationQid": "Q64",
+
     "wikidata": "Q64",
     "coord": "Point(13.383333333 52.516666666)",
+
     "coordinates": "Point(13.383333333 52.516666666)",
 
     "records": "472",
 
     "records": "472",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Palé Kréyol",
+
     "itemLabel": "Palé Kréyol",
     "locationQid": "Q907721",
+
     "wikidata": "Q907721",
     "coord": "Point(3.129444444 48.949166666)",
+
     "coordinates": "Point(3.129444444 48.949166666)",
 
     "records": "451",
 
     "records": "451",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hélène",
+
     "itemLabel": "Hélène",
     "locationQid": "Q38380",
+
     "wikidata": "Q38380",
     "coord": "Point(-0.555555555 47.472777777)",
+
     "coordinates": "Point(-0.555555555 47.472777777)",
 
     "records": "438",
 
     "records": "438",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Pom445",
+
     "itemLabel": "Pom445",
     "locationQid": "Q456",
+
     "wikidata": "Q456",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "436",
 
     "records": "436",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Michael Schönitzer",
+
     "itemLabel": "Michael Schönitzer",
     "locationQid": "Q1726",
+
     "wikidata": "Q1726",
     "coord": "Point(11.575 48.1375)",
+
     "coordinates": "Point(11.575 48.1375)",
 
     "records": "434",
 
     "records": "434",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rodelar",
+
     "itemLabel": "Rodelar",
     "locationQid": "Q29",
+
     "wikidata": "Q29",
     "coord": "Point(-3.5 40.2)",
+
     "coordinates": "Point(-3.5 40.2)",
 
     "records": "433",
 
     "records": "433",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Missatikamekw",
+
     "itemLabel": "Missatikamekw",
     "locationQid": "Q3285285",
+
     "wikidata": "Q3285285",
     "coord": "Point(-74.391666666 47.2225)",
+
     "coordinates": "Point(-74.391666666 47.2225)",
 
     "records": "432",
 
     "records": "432",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ionenlaser",
+
     "itemLabel": "Ionenlaser",
     "locationQid": "Q1726",
+
     "wikidata": "Q1726",
     "coord": "Point(11.575 48.1375)",
+
     "coordinates": "Point(11.575 48.1375)",
 
     "records": "423",
 
     "records": "423",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Anon1314",
+
     "itemLabel": "Anon1314",
     "locationQid": "Q258",
+
     "wikidata": "Q258",
     "coord": "Point(24.0 -29.0)",
+
     "coordinates": "Point(24.0 -29.0)",
 
     "records": "419",
 
     "records": "419",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fredericknoronha",
+
     "itemLabel": "Fredericknoronha",
     "locationQid": "Q1171",
+
     "wikidata": "Q1171",
     "coord": "Point(74.043333 15.401944)",
+
     "coordinates": "Point(74.043333 15.401944)",
 
     "records": "414",
 
     "records": "414",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LuneMarine",
+
     "itemLabel": "LuneMarine",
     "locationQid": "Q834",
+
     "wikidata": "Q834",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "401",
 
     "records": "401",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Buffer",
+
     "itemLabel": "Buffer",
     "locationQid": "Q30",
+
     "wikidata": "Q30",
     "coord": "Point(-98.5795 39.828175)",
+
     "coordinates": "Point(-98.5795 39.828175)",
 
     "records": "400",
 
     "records": "400",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gzhegozh",
+
     "itemLabel": "Gzhegozh",
     "locationQid": "Q1899",
+
     "wikidata": "Q1899",
     "coord": "Point(30.523611111 50.45)",
+
     "coordinates": "Point(30.523611111 50.45)",
 
     "records": "381",
 
     "records": "381",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gzhegozh",
+
     "itemLabel": "Gzhegozh",
     "locationQid": "Q2966",
+
     "wikidata": "Q2966",
     "coord": "Point(8.71 49.412222222)",
+
     "coordinates": "Point(8.71 49.412222222)",
 
     "records": "381",
 
     "records": "381",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ajshul",
+
     "itemLabel": "Vininn126",
     "locationQid": "Q16",
+
    "wikidata": "Q270",
     "coord": "Point(-109.0 56.0)",
+
    "coordinates": "Point(21.011111111 52.23)",
 +
    "records": "380",
 +
    "layer": "10-1,000"
 +
  },
 +
  {
 +
    "itemLabel": "Ajshul",
 +
     "wikidata": "Q16",
 +
     "coordinates": "Point(-109.0 56.0)",
 
     "records": "380",
 
     "records": "380",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LightD31",
+
     "itemLabel": "LightD31",
     "locationQid": "Q7880",
+
     "wikidata": "Q7880",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "377",
 
     "records": "377",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "NMaia",
+
     "itemLabel": "NMaia",
     "locationQid": "Q155",
+
     "wikidata": "Q155",
     "coord": "Point(-53.0 -14.0)",
+
     "coordinates": "Point(-53.0 -14.0)",
 
     "records": "375",
 
     "records": "375",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "O2",
+
     "itemLabel": "O2",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "374",
 
     "records": "374",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Adélaïde Calais WMFr",
+
     "itemLabel": "Adélaïde Calais WMFr",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "369",
 
     "records": "369",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AryamanA",
+
     "itemLabel": "AryamanA",
     "locationQid": "Q61",
+
     "wikidata": "Q61",
     "coord": "Point(-77.036666666 38.895)",
+
     "coordinates": "Point(-77.036666666 38.895)",
 
     "records": "365",
 
     "records": "365",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Golmore",
+
     "itemLabel": "Golmore",
     "locationQid": "Q13917",
+
     "wikidata": "Q13917",
     "coord": "Point(2.3176 48.8522)",
+
     "coordinates": "Point(2.3176 48.8522)",
 
     "records": "364",
 
     "records": "364",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Anagha62",
+
     "itemLabel": "Anagha62",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "363",
 
     "records": "363",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "{{Creator:Subhashish Panigrahi}}",
+
     "itemLabel": "{{Creator:Subhashish Panigrahi}}",
     "locationQid": "Q22048",
+
     "wikidata": "Q22048",
     "coord": "Point(85.5 20.15)",
+
     "coordinates": "Point(85.5 20.15)",
 
     "records": "352",
 
     "records": "352",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zakaria Mimouni",
+
     "itemLabel": "Zakaria Mimouni",
     "locationQid": "Q612",
+
     "wikidata": "Q612",
     "coord": "Point(55.309444444 25.269722222)",
+
     "coordinates": "Point(55.309444444 25.269722222)",
 
     "records": "347",
 
     "records": "347",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Assassas77",
+
     "itemLabel": "Assassas77",
     "locationQid": "Q13917",
+
     "wikidata": "Q13917",
     "coord": "Point(2.3176 48.8522)",
+
     "coordinates": "Point(2.3176 48.8522)",
 
     "records": "346",
 
     "records": "346",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vaulque",
+
     "itemLabel": "Vaulque",
     "locationQid": "Q342",
+
     "wikidata": "Q342",
     "coord": "Point(-4.097777777 47.995833333)",
+
     "coordinates": "Point(-4.097777777 47.995833333)",
 
     "records": "342",
 
     "records": "342",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Abdeaitali",
+
     "itemLabel": "Abdeaitali",
     "locationQid": "Q1754",
+
     "wikidata": "Q1754",
     "coord": "Point(18.068611111 59.329444444)",
+
     "coordinates": "Point(18.068611111 59.329444444)",
 
     "records": "325",
 
     "records": "325",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Daramlagon",
+
     "itemLabel": "Daramlagon",
     "locationQid": "Q2207",
+
     "wikidata": "Q2207",
     "coord": "Point(123.166666666 13.616666666)",
+
     "coordinates": "Point(123.166666666 13.616666666)",
 
     "records": "323",
 
     "records": "323",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aioramu",
+
     "itemLabel": "Aioramu",
     "locationQid": "Q10313",
+
     "wikidata": "Q10313",
     "coord": "Point(-1.98 43.32)",
+
     "coordinates": "Point(-1.98 43.32)",
 
     "records": "322",
 
     "records": "322",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jjamesryan",
+
     "itemLabel": "Jjamesryan",
     "locationQid": "Q34932",
+
     "wikidata": "Q34932",
     "coord": "Point(153.027777777 -27.467777777)",
+
     "coordinates": "Point(153.027777777 -27.467777777)",
 
     "records": "320",
 
     "records": "320",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Salgo60",
+
     "itemLabel": "Salgo60",
     "locationQid": "Q1754",
+
     "wikidata": "Q1754",
     "coord": "Point(18.068611111 59.329444444)",
+
     "coordinates": "Point(18.068611111 59.329444444)",
 
     "records": "315",
 
     "records": "315",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tamahashi",
+
     "itemLabel": "Tamahashi",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "308",
 
     "records": "308",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rachid Hamatou",
+
     "itemLabel": "Zekai Wu",
     "locationQid": "Q338844",
+
     "wikidata": "Q16666",
     "coord": "Point(6.166666666 35.55)",
+
     "coordinates": "Point(118.766666666 32.05)",
 
     "records": "305",
 
     "records": "305",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zekai Wu",
+
     "itemLabel": "Rachid Hamatou",
     "locationQid": "Q16666",
+
     "wikidata": "Q338844",
     "coord": "Point(118.766666666 32.05)",
+
     "coordinates": "Point(6.166666666 35.55)",
 
     "records": "305",
 
     "records": "305",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Déwata Cengkar",
+
     "itemLabel": "Déwata Cengkar",
     "locationQid": "Q3741",
+
     "wikidata": "Q3741",
     "coord": "Point(110.364444444 -7.801388888)",
+
     "coordinates": "Point(110.364444444 -7.801388888)",
 
     "records": "303",
 
     "records": "303",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Carma citrawati",
+
     "itemLabel": "Carma citrawati",
     "locationQid": "Q3125978",
+
     "wikidata": "Q3125978",
     "coord": "Point(115.0 -8.5)",
+
     "coordinates": "Point(115.0 -8.5)",
 
     "records": "302",
 
     "records": "302",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Idhurar",
+
     "itemLabel": "Idhurar",
     "locationQid": "Q262",
+
     "wikidata": "Q262",
     "coord": "Point(1.0 28.0)",
+
     "coordinates": "Point(1.0 28.0)",
 
     "records": "297",
 
     "records": "297",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Berrely",
+
     "itemLabel": "Berrely",
     "locationQid": "Q84",
+
     "wikidata": "Q84",
     "coord": "Point(-0.1275 51.507222222)",
+
     "coordinates": "Point(-0.1275 51.507222222)",
 
     "records": "297",
 
     "records": "297",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mathieu Denel WMFr",
+
     "itemLabel": "Mathieu Denel WMFr",
     "locationQid": "Q457",
+
     "wikidata": "Q457",
     "coord": "Point(2.044722222 48.928888888)",
+
     "coordinates": "Point(2.044722222 48.928888888)",
 
     "records": "293",
 
     "records": "293",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines1",
+
     "itemLabel": "Aemines1",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines2",
+
     "itemLabel": "Aemines2",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines3",
+
     "itemLabel": "Aemines3",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines4",
+
     "itemLabel": "Aemines4",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines5",
+
     "itemLabel": "Aemines5",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aemines6",
+
     "itemLabel": "Aemines6",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "291",
 
     "records": "291",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ash Crow",
+
     "itemLabel": "Ash Crow",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "287",
 
     "records": "287",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Idéalités",
+
     "itemLabel": "Idéalités",
     "locationQid": "Q3420451",
+
     "wikidata": "Q3420451",
     "coord": "Point(-73.7167 46.05)",
+
     "coordinates": "Point(-73.7167 46.05)",
 
     "records": "286",
 
     "records": "286",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "MiguelAlanCS",
+
     "itemLabel": "MiguelAlanCS",
     "locationQid": "Q8356",
+
     "wikidata": "Q8356",
     "coord": "Point(-4.728561111 41.651980555)",
+
     "coordinates": "Point(-4.728561111 41.651980555)",
 
     "records": "283",
 
     "records": "283",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Justinrleung",
+
     "itemLabel": "Justinrleung",
     "locationQid": "Q1904",
+
     "wikidata": "Q1904",
     "coord": "Point(-85.0 50.0)",
+
     "coordinates": "Point(-85.0 50.0)",
 
     "records": "278",
 
     "records": "278",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rodrigo5260",
+
     "itemLabel": "Rodrigo5260",
     "locationQid": "Q2868",
+
     "wikidata": "Q2868",
     "coord": "Point(-77.0375 -12.06)",
+
     "coordinates": "Point(-77.0375 -12.06)",
 
     "records": "277",
 
     "records": "277",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Julien Baley",
+
     "itemLabel": "Julien Baley",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "275",
 
     "records": "275",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Infovarius",
+
     "itemLabel": "Infovarius",
     "locationQid": "Q915",
+
     "wikidata": "Q915",
     "coord": "Point(56.248888888 58.013888888)",
+
     "coordinates": "Point(56.248888888 58.013888888)",
 
     "records": "271",
 
     "records": "271",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Antoine",
+
     "itemLabel": "Antoine",
     "locationQid": "Q147987",
+
     "wikidata": "Q147987",
     "coord": "Point(7.473611111 48.102222222)",
+
     "coordinates": "Point(7.473611111 48.102222222)",
 
     "records": "267",
 
     "records": "267",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Guergana",
+
     "itemLabel": "Guergana",
     "locationQid": "Q64",
+
     "wikidata": "Q64",
     "coord": "Point(13.383333333 52.516666666)",
+
     "coordinates": "Point(13.383333333 52.516666666)",
 
     "records": "260",
 
     "records": "260",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eavqwiki",
+
     "itemLabel": "Eavqwiki",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "260",
 
     "records": "260",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Loumaju",
+
     "itemLabel": "Loumaju",
     "locationQid": "Q7880",
+
     "wikidata": "Q7880",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "256",
 
     "records": "256",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Marxav",
+
     "itemLabel": "Marxav",
     "locationQid": "Q3349",
+
     "wikidata": "Q3349",
     "coord": "Point(-2.833333333 48.333333333)",
+
     "coordinates": "Point(-2.833333333 48.333333333)",
 
     "records": "236",
 
     "records": "236",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rachmat04",
+
     "itemLabel": "Rachmat04",
     "locationQid": "Q5722",
+
     "wikidata": "Q5722",
     "coord": "Point(96.6 5.083333333)",
+
     "coordinates": "Point(96.6 5.083333333)",
 
     "records": "235",
 
     "records": "235",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ALFREDAZASEGLA",
+
     "itemLabel": "ALFREDAZASEGLA",
     "locationQid": "Q962",
+
     "wikidata": "Q962",
     "coord": "Point(2.183333333 8.833333333)",
+
     "coordinates": "Point(2.183333333 8.833333333)",
 
     "records": "222",
 
     "records": "222",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Morielijah",
+
     "itemLabel": "Roll-Morton",
     "locationQid": "Q312209",
+
     "wikidata": "Q142",
     "coord": "Point(9.233333333 4.166666666)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "217",
 
     "records": "217",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Roll-Morton",
+
     "itemLabel": "Morielijah",
     "locationQid": "Q142",
+
     "wikidata": "Q312209",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(9.233333333 4.166666666)",
 
     "records": "217",
 
     "records": "217",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "QueerEcofeminist",
+
     "itemLabel": "QueerEcofeminist",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "215",
 
     "records": "215",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Lirazelf",
+
     "itemLabel": "Bicolino34",
     "locationQid": "Q22",
+
     "wikidata": "Q173407",
     "coord": "Point(-5.0 57.0)",
+
     "coordinates": "Point(25.559722222 49.393055555)",
 
     "records": "214",
 
     "records": "214",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bicolino34",
+
     "itemLabel": "Lirazelf",
     "locationQid": "Q173407",
+
     "wikidata": "Q22",
     "coord": "Point(25.559722222 49.393055555)",
+
     "coordinates": "Point(-5.0 57.0)",
 
     "records": "214",
 
     "records": "214",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Seshiru",
+
     "itemLabel": "Seshiru",
     "locationQid": "Q38380",
+
     "wikidata": "Q38380",
     "coord": "Point(-0.555555555 47.472777777)",
+
     "coordinates": "Point(-0.555555555 47.472777777)",
 
     "records": "211",
 
     "records": "211",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Woubster",
+
     "itemLabel": "Woubster",
     "locationQid": "Q99",
+
     "wikidata": "Q99",
     "coord": "Point(-120.0 37.0)",
+
     "coordinates": "Point(-120.0 37.0)",
 
     "records": "209",
 
     "records": "209",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Patsagorn Y.",
+
     "itemLabel": "Patsagorn Y.",
     "locationQid": "Q869",
+
     "wikidata": "Q869",
     "coord": "Point(101.0 14.0)",
+
     "coordinates": "Point(101.0 14.0)",
 
     "records": "208",
 
     "records": "208",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Justice Okai-allotey",
+
     "itemLabel": "Nitesh Gill",
     "locationQid": "Q3761",
+
     "wikidata": "Q259030",
     "coord": "Point(-0.187 5.6037)",
+
     "coordinates": "Point(75.17 30.816666666)",
 
     "records": "208",
 
     "records": "208",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nitesh Gill",
+
     "itemLabel": "Justice Okai-allotey",
     "locationQid": "Q259030",
+
     "wikidata": "Q3761",
     "coord": "Point(75.17 30.816666666)",
+
     "coordinates": "Point(-0.187 5.6037)",
 
     "records": "208",
 
     "records": "208",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "PJLC-Wiki",
+
     "itemLabel": "PJLC-Wiki",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "198",
 
     "records": "198",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Joseagush",
+
     "itemLabel": "Joseagush",
     "locationQid": "Q11496",
+
     "wikidata": "Q11496",
     "coord": "Point(115.283333333 -8.466666666)",
+
     "coordinates": "Point(115.283333333 -8.466666666)",
 
     "records": "196",
 
     "records": "196",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "val",
+
     "itemLabel": "val",
     "locationQid": "Q22690",
+
     "wikidata": "Q22690",
     "coord": "Point(6.176944444 49.119722222)",
+
     "coordinates": "Point(6.176944444 49.119722222)",
 
     "records": "196",
 
     "records": "196",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "PtiBzh",
+
     "itemLabel": "PtiBzh",
     "locationQid": "Q12130",
+
     "wikidata": "Q12130",
     "coord": "Point(-3.0 48.0)",
+
     "coordinates": "Point(-3.0 48.0)",
 
     "records": "181",
 
     "records": "181",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ashoka KG",
+
     "itemLabel": "Ashoka KG",
     "locationQid": "Q127041",
+
     "wikidata": "Q127041",
     "coord": "Point(74.880555555 12.870277777)",
+
     "coordinates": "Point(74.880555555 12.870277777)",
 
     "records": "176",
 
     "records": "176",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jagseer S Sidhu",
+
     "itemLabel": "Jagseer S Sidhu",
     "locationQid": "Q625714",
+
     "wikidata": "Q625714",
     "coord": "Point(75.1 30.6833)",
+
     "coordinates": "Point(75.1 30.6833)",
 
     "records": "175",
 
     "records": "175",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Theklan",
+
     "itemLabel": "Theklan",
     "locationQid": "Q147774",
+
     "wikidata": "Q147774",
     "coord": "Point(-2.1748013 43.2863159)",
+
     "coordinates": "Point(-2.1748013 43.2863159)",
 
     "records": "172",
 
     "records": "172",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yiyi",
+
     "itemLabel": "Yiyi",
     "locationQid": "Q1155",
+
     "wikidata": "Q1155",
     "coord": "Point(8.8518 45.611958333)",
+
     "coordinates": "Point(8.8518 45.611958333)",
 
     "records": "170",
 
     "records": "170",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bastenbas (Lingua)",
+
     "itemLabel": "Amqui",
     "locationQid": "Q142",
+
     "wikidata": "Q957746",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(-67.6833 48.5667)",
 
     "records": "163",
 
     "records": "163",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Amqui",
+
     "itemLabel": "Bastenbas (Lingua)",
     "locationQid": "Q957746",
+
     "wikidata": "Q142",
     "coord": "Point(-67.6833 48.5667)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "163",
 
     "records": "163",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Maina Tudu",
+
     "itemLabel": "Maina Tudu",
     "locationQid": "Q1914546",
+
     "wikidata": "Q1914546",
     "coord": "Point(86.733 21.933)",
+
     "coordinates": "Point(86.733 21.933)",
 
     "records": "150",
 
     "records": "150",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Louis",
+
     "itemLabel": "Louis",
     "locationQid": "Q3240",
+
     "wikidata": "Q3240",
     "coord": "Point(5.083333333 43.5)",
+
     "coordinates": "Point(5.083333333 43.5)",
 
     "records": "149",
 
     "records": "149",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Louis",
+
     "itemLabel": "Louis",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "149",
 
     "records": "149",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Meghanee Gambhir",
+
     "itemLabel": "Meghanee Gambhir",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "147",
 
     "records": "147",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Shisma",
+
     "itemLabel": "Shisma",
     "locationQid": "Q64",
+
     "wikidata": "Q64",
     "coord": "Point(13.383333333 52.516666666)",
+
     "coordinates": "Point(13.383333333 52.516666666)",
 
     "records": "146",
 
     "records": "146",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Shilpa Bhat N H",
+
     "itemLabel": "Shilpa Bhat N H",
     "locationQid": "Q127041",
+
     "wikidata": "Q127041",
     "coord": "Point(74.880555555 12.870277777)",
+
     "coordinates": "Point(74.880555555 12.870277777)",
 
     "records": "145",
 
     "records": "145",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fralambert",
+
     "itemLabel": "Tokçon",
     "locationQid": "Q44012",
+
     "wikidata": "Q142271",
     "coord": "Point(-72.55 46.35)",
+
     "coordinates": "Point(-73.816666666 45.45)",
 
     "records": "144",
 
     "records": "144",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tokçon",
+
     "itemLabel": "Fralambert",
     "locationQid": "Q142271",
+
     "wikidata": "Q44012",
     "coord": "Point(-73.816666666 45.45)",
+
     "coordinates": "Point(-72.55 46.35)",
 
     "records": "144",
 
     "records": "144",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Harmonia Amanda",
+
     "itemLabel": "Harmonia Amanda",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "143",
 
     "records": "143",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gwikor Frank",
+
     "itemLabel": "Gwikor Frank",
     "locationQid": "Q10690",
+
     "wikidata": "Q10690",
     "coord": "Point(-3.179166666 51.481666666)",
+
     "coordinates": "Point(-3.179166666 51.481666666)",
 
     "records": "139",
 
     "records": "139",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Simon Villeneuve",
+
     "itemLabel": "Simon Villeneuve",
     "locationQid": "Q952269",
+
     "wikidata": "Q952269",
     "coord": "Point(-71.059166666 48.427777777)",
+
     "coordinates": "Point(-71.059166666 48.427777777)",
 
     "records": "137",
 
     "records": "137",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ChoumX",
+
     "itemLabel": "ChoumX",
     "locationQid": "Q582",
+
     "wikidata": "Q582",
     "coord": "Point(4.879444444 45.766111111)",
+
     "coordinates": "Point(4.879444444 45.766111111)",
 
     "records": "136",
 
     "records": "136",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Matarimi1",
+
     "itemLabel": "Matarimi1",
     "locationQid": "Q3659",
+
     "wikidata": "Q3659",
     "coord": "Point(15.05 12.11)",
+
     "coordinates": "Point(15.05 12.11)",
 
     "records": "133",
 
     "records": "133",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ekane",
+
     "itemLabel": "Williewallie",
     "locationQid": "Q209086",
+
     "wikidata": "Q26555",
     "coord": "Point(2.407222222 48.898055555)",
+
     "coordinates": "Point(5.666666666 52.05)",
 
     "records": "130",
 
     "records": "130",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Williewallie",
+
     "itemLabel": "Ekane",
     "locationQid": "Q26555",
+
     "wikidata": "Q209086",
     "coord": "Point(5.666666666 52.05)",
+
     "coordinates": "Point(2.407222222 48.898055555)",
 
     "records": "130",
 
     "records": "130",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Pranavshivakumar",
+
     "itemLabel": "Pranavshivakumar",
     "locationQid": "Q127041",
+
     "wikidata": "Q127041",
     "coord": "Point(74.880555555 12.870277777)",
+
     "coordinates": "Point(74.880555555 12.870277777)",
 
     "records": "129",
 
     "records": "129",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "OrangeFlu",
+
     "itemLabel": "OrangeFlu",
     "locationQid": "Q19660",
+
     "wikidata": "Q19660",
     "coord": "Point(26.083333333 44.4)",
+
     "coordinates": "Point(26.083333333 44.4)",
 
     "records": "129",
 
     "records": "129",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Christophe Barume Masirika",
+
     "itemLabel": "Christophe Barume Masirika",
     "locationQid": "Q222279",
+
     "wikidata": "Q222279",
     "coord": "Point(28.842777777 -2.490833333)",
+
     "coordinates": "Point(28.842777777 -2.490833333)",
 
     "records": "129",
 
     "records": "129",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Christophe Barume Masirika",
+
     "itemLabel": "Christophe Barume Masirika",
     "locationQid": "Q222279",
+
     "wikidata": "Q222279",
     "coord": "Point(28.866666666 -2.5)",
+
     "coordinates": "Point(28.866666666 -2.5)",
 
     "records": "129",
 
     "records": "129",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tashi",
+
     "itemLabel": "Tashi",
     "locationQid": "Q102317",
+
     "wikidata": "Q102317",
     "coord": "Point(20.631944444 50.8725)",
+
     "coordinates": "Point(20.631944444 50.8725)",
 
     "records": "127",
 
     "records": "127",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Joy sagar Murmu",
+
     "itemLabel": "Baidax",
     "locationQid": "Q1164",
+
     "wikidata": "Q182872",
     "coord": "Point(93.0 26.0)",
+
     "coordinates": "Point(2.701666666 48.408888888)",
 
     "records": "122",
 
     "records": "122",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Baidax",
+
     "itemLabel": "Joy sagar Murmu",
     "locationQid": "Q182872",
+
     "wikidata": "Q1164",
     "coord": "Point(2.701666666 48.408888888)",
+
     "coordinates": "Point(93.0 26.0)",
 
     "records": "122",
 
     "records": "122",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kiminou1",
+
     "itemLabel": "Kiminou1",
     "locationQid": "Q18678082",
+
     "wikidata": "Q18678082",
     "coord": "Point(-0.5888 44.8366)",
+
     "coordinates": "Point(-0.5888 44.8366)",
 
     "records": "121",
 
     "records": "121",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "GAllegre",
+
     "itemLabel": "GAllegre",
     "locationQid": "Q1289",
+
     "wikidata": "Q1289",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "120",
 
     "records": "120",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Loizbec",
+
     "itemLabel": "Loizbec",
     "locationQid": "Q456",
+
     "wikidata": "Q456",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "116",
 
     "records": "116",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zupanurska",
+
     "itemLabel": "Zupanurska",
     "locationQid": "Q604194",
+
     "wikidata": "Q604194",
     "coord": "Point(14.172078 46.342517)",
+
     "coordinates": "Point(14.172078 46.342517)",
 
     "records": "116",
 
     "records": "116",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "KrystjanM",
+
     "itemLabel": "KrystjanM",
     "locationQid": "Q3808",
+
     "wikidata": "Q3808",
     "coord": "Point(11.518055555 3.857777777)",
+
     "coordinates": "Point(11.518055555 3.857777777)",
 
     "records": "112",
 
     "records": "112",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Abakar B",
+
     "itemLabel": "Abakar B",
     "locationQid": "Q657",
+
     "wikidata": "Q657",
     "coord": "Point(19.4 15.466667)",
+
     "coordinates": "Point(19.4 15.466667)",
 
     "records": "109",
 
     "records": "109",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bilbo40",
+
     "itemLabel": "Yug",
     "locationQid": "Q16",
+
     "wikidata": "Q1104449",
     "coord": "Point(-109.0 56.0)",
+
     "coordinates": "Point(0.105 44.467777777)",
 
     "records": "106",
 
     "records": "106",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yug",
+
     "itemLabel": "Bilbo40",
     "locationQid": "Q1104449",
+
     "wikidata": "Q16",
     "coord": "Point(0.105 44.467777777)",
+
     "coordinates": "Point(-109.0 56.0)",
 
     "records": "106",
 
     "records": "106",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Misnograder",
+
     "itemLabel": "Misnograder",
     "locationQid": "Q132830",
+
     "wikidata": "Q132830",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "105",
 
     "records": "105",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sushant savla",
+
     "itemLabel": "Sushant savla",
     "locationQid": "Q1156",
+
     "wikidata": "Q1156",
     "coord": "Point(72.8775 19.075833333)",
+
     "coordinates": "Point(72.8775 19.075833333)",
 
     "records": "103",
 
     "records": "103",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "GeoMechain",
+
     "itemLabel": "Tsaag Valren",
     "locationQid": "Q6441",
+
     "wikidata": "Q71500",
     "coord": "Point(3.877230555 43.610919444)",
+
     "coordinates": "Point(-2.548333333 47.955833333)",
 
     "records": "101",
 
     "records": "101",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tsaag Valren",
+
     "itemLabel": "GeoMechain",
     "locationQid": "Q71500",
+
     "wikidata": "Q6441",
     "coord": "Point(-2.548333333 47.955833333)",
+
     "coordinates": "Point(3.877230555 43.610919444)",
 
     "records": "101",
 
     "records": "101",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bal Pesino",
+
     "itemLabel": "Bal Pesino",
     "locationQid": "Q928",
+
     "wikidata": "Q928",
     "coord": "Point(123.0 12.0)",
+
     "coordinates": "Point(123.0 12.0)",
 
     "records": "100",
 
     "records": "100",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mathsou",
+
     "itemLabel": "Froggyspeak92",
     "locationQid": "Q90",
+
     "wikidata": "Q142",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "100",
 
     "records": "100",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Froggyspeak92",
+
     "itemLabel": "Mathsou",
     "locationQid": "Q142",
+
     "wikidata": "Q90",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "100",
 
     "records": "100",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Elix",
+
     "itemLabel": "Elix",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "100",
 
     "records": "100",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "SpringProof",
+
     "itemLabel": "SpringProof",
     "locationQid": "Q65",
+
     "wikidata": "Q65",
     "coord": "Point(-118.24368 34.05223)",
+
     "coordinates": "Point(-118.24368 34.05223)",
 
     "records": "99",
 
     "records": "99",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vanbasten 23",
+
     "itemLabel": "Vanbasten 23",
     "locationQid": "Q909707",
+
     "wikidata": "Q909707",
     "coord": "Point(-3.005555555 43.310833333)",
+
     "coordinates": "Point(-3.005555555 43.310833333)",
 
     "records": "98",
 
     "records": "98",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Benoit Rochon",
+
     "itemLabel": "Benoit Rochon",
     "locationQid": "Q2304022",
+
     "wikidata": "Q2304022",
     "coord": "Point(-74.983333333 46.433333333)",
+
     "coordinates": "Point(-74.983333333 46.433333333)",
 
     "records": "97",
 
     "records": "97",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mah3110",
+
     "itemLabel": "Mah3110",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "95",
 
     "records": "95",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ngeorges05",
+
     "itemLabel": "नीलिमा रास्ते",
     "locationQid": "Q132830",
+
     "wikidata": "Q1538",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "94",
 
     "records": "94",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "नीलिमा रास्ते",
+
     "itemLabel": "Ngeorges05",
     "locationQid": "Q1538",
+
     "wikidata": "Q132830",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "94",
 
     "records": "94",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Cantons-de-l'Est",
+
     "itemLabel": "Cantons-de-l'Est",
     "locationQid": "Q139473",
+
     "wikidata": "Q139473",
     "coord": "Point(-71.9 45.4)",
+
     "coordinates": "Point(-71.9 45.4)",
 
     "records": "94",
 
     "records": "94",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LurKin",
+
     "itemLabel": "LurKin",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "93",
 
     "records": "93",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bastenbas",
+
     "itemLabel": "Bastenbas",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "92",
 
     "records": "92",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Wenyam",
+
     "itemLabel": "Wenyam",
     "locationQid": "Q773547",
+
     "wikidata": "Q773547",
     "coord": "Point(-1.512222 12.353056)",
+
     "coordinates": "Point(-1.512222 12.353056)",
 
     "records": "89",
 
     "records": "89",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Toniher",
+
     "itemLabel": "Toniher",
     "locationQid": "Q1492",
+
     "wikidata": "Q1492",
     "coord": "Point(2.176944444 41.3825)",
+
     "coordinates": "Point(2.176944444 41.3825)",
 
     "records": "88",
 
     "records": "88",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "MahmoudM",
+
     "itemLabel": "Ivanhercaz",
     "locationQid": "Q1218",
+
     "wikidata": "Q178925",
     "coord": "Point(35.216666666 31.783333333)",
+
     "coordinates": "Point(-15.5925 27.958611111)",
 
     "records": "87",
 
     "records": "87",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ivanhercaz",
+
     "itemLabel": "MahmoudM",
     "locationQid": "Q178925",
+
     "wikidata": "Q1218",
     "coord": "Point(-15.5925 27.958611111)",
+
     "coordinates": "Point(35.216666666 31.783333333)",
 
     "records": "87",
 
     "records": "87",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "CDC-CONNEXION",
+
     "itemLabel": "Robby",
     "locationQid": "Q456",
+
     "wikidata": "Q16050",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(6.156666666 49.868055555)",
 
     "records": "86",
 
     "records": "86",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Robby",
+
     "itemLabel": "CDC-CONNEXION",
     "locationQid": "Q16050",
+
     "wikidata": "Q456",
     "coord": "Point(6.156666666 49.868055555)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "86",
 
     "records": "86",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jovan.kostov",
+
     "itemLabel": "Jovan.kostov",
     "locationQid": "Q6441",
+
     "wikidata": "Q6441",
     "coord": "Point(3.877230555 43.610919444)",
+
     "coordinates": "Point(3.877230555 43.610919444)",
 
     "records": "84",
 
     "records": "84",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Matlin",
+
     "itemLabel": "Matlin",
     "locationQid": "Q47554",
+
     "wikidata": "Q47554",
     "coord": "Point(18.616666666 53.016666666)",
+
     "coordinates": "Point(18.616666666 53.016666666)",
 
     "records": "84",
 
     "records": "84",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hatokun24",
+
     "itemLabel": "Hatokun24",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "80",
 
     "records": "80",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "CamelCaseNick",
+
     "itemLabel": "Aseel Abdulrahman",
     "locationQid": "Q1055",
+
     "wikidata": "Q3805",
     "coord": "Point(10.0 53.55)",
+
     "coordinates": "Point(35.933333333 31.95)",
 
     "records": "79",
 
     "records": "79",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aseel Abdulrahman",
+
     "itemLabel": "CamelCaseNick",
     "locationQid": "Q3805",
+
     "wikidata": "Q1055",
     "coord": "Point(35.933333333 31.95)",
+
     "coordinates": "Point(10.0 53.55)",
 
     "records": "79",
 
     "records": "79",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Clivetanyi",
+
     "itemLabel": "Clivetanyi",
     "locationQid": "Q312209",
+
     "wikidata": "Q312209",
     "coord": "Point(9.233333333 4.166666666)",
+
     "coordinates": "Point(9.233333333 4.166666666)",
 
     "records": "76",
 
     "records": "76",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ijon",
+
     "itemLabel": "Ijon",
     "locationQid": "Q801",
+
     "wikidata": "Q801",
     "coord": "Point(35.0 31.0)",
+
     "coordinates": "Point(35.0 31.0)",
 
     "records": "73",
 
     "records": "73",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mahesh2582",
+
     "itemLabel": "Mahesh2582",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "70",
 
     "records": "70",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Axdae",
+
     "itemLabel": "Axdae",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "70",
 
     "records": "70",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "NKUATE",
+
     "itemLabel": "Rocky 734",
     "locationQid": "Q132830",
+
     "wikidata": "Q22048",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(85.5 20.15)",
 
     "records": "70",
 
     "records": "70",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rocky 734",
+
     "itemLabel": "NKUATE",
     "locationQid": "Q22048",
+
     "wikidata": "Q132830",
     "coord": "Point(85.5 20.15)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "70",
 
     "records": "70",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kitel WP",
+
     "itemLabel": "Vampiro",
     "locationQid": "Q142",
+
     "wikidata": "Q834",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "67",
 
     "records": "67",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vampiro",
+
     "itemLabel": "Kitel WP",
     "locationQid": "Q834",
+
     "wikidata": "Q142",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "67",
 
     "records": "67",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AseelF",
+
     "itemLabel": "AseelF",
     "locationQid": "Q3805",
+
     "wikidata": "Q3805",
     "coord": "Point(35.933333333 31.95)",
+
     "coordinates": "Point(35.933333333 31.95)",
 
     "records": "67",
 
     "records": "67",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Oby Ezeilo",
+
     "itemLabel": "Unuaiga",
     "locationQid": "Q3787",
+
     "wikidata": "Q132671",
     "coord": "Point(7.491388888 9.055555555)",
+
     "coordinates": "Point(-0.37 43.300833333)",
 
     "records": "67",
 
     "records": "67",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Unuaiga",
+
     "itemLabel": "Oby Ezeilo",
     "locationQid": "Q132671",
+
     "wikidata": "Q3787",
     "coord": "Point(-0.37 43.300833333)",
+
     "coordinates": "Point(7.491388888 9.055555555)",
 
     "records": "67",
 
     "records": "67",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sebleouf",
+
     "itemLabel": "Sebleouf",
     "locationQid": "Q463",
+
     "wikidata": "Q463",
     "coord": "Point(4.819447222 45.740186111)",
+
     "coordinates": "Point(4.819447222 45.740186111)",
 
     "records": "66",
 
     "records": "66",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Wozan",
+
     "itemLabel": "Wozan",
     "locationQid": "Q834",
+
     "wikidata": "Q834",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "65",
 
     "records": "65",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "NonoDarko",
+
     "itemLabel": "NonoDarko",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "65",
 
     "records": "65",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Great11",
+
     "itemLabel": "Great11",
     "locationQid": "Q340",
+
     "wikidata": "Q340",
     "coord": "Point(-73.561666666 45.508888888)",
+
     "coordinates": "Point(-73.561666666 45.508888888)",
 
     "records": "62",
 
     "records": "62",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Remux",
+
     "itemLabel": "Remux",
     "locationQid": "Q51103",
+
     "wikidata": "Q51103",
     "coord": "Point(-76.519722222 3.44)",
+
     "coordinates": "Point(-76.519722222 3.44)",
 
     "records": "62",
 
     "records": "62",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eihel-LiLi",
+
     "itemLabel": "Eihel-LiLi",
     "locationQid": "Q807",
+
     "wikidata": "Q807",
     "coord": "Point(6.633333333 46.533333333)",
+
     "coordinates": "Point(6.633333333 46.533333333)",
 
     "records": "61",
 
     "records": "61",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jean",
+
     "itemLabel": "Jean",
     "locationQid": "Q219370",
+
     "wikidata": "Q219370",
     "coord": "Point(-4.235277777 48.437777777)",
+
     "coordinates": "Point(-4.235277777 48.437777777)",
 
     "records": "60",
 
     "records": "60",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Micà",
+
     "itemLabel": "Greenman",
     "locationQid": "Q679064",
+
     "wikidata": "Q5465",
     "coord": "Point(-0.213055555 43.191944444)",
+
     "coordinates": "Point(18.425 -33.925)",
 
     "records": "59",
 
     "records": "59",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Greenman",
+
     "itemLabel": "Sunita gambhir",
     "locationQid": "Q5465",
+
     "wikidata": "Q1538",
     "coord": "Point(18.425 -33.925)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "59",
 
     "records": "59",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sunita gambhir",
+
     "itemLabel": "Micà",
     "locationQid": "Q1538",
+
     "wikidata": "Q679064",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(-0.213055555 43.191944444)",
 
     "records": "59",
 
     "records": "59",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Culex",
+
     "itemLabel": "Culex",
     "locationQid": "Q6643",
+
     "wikidata": "Q6643",
     "coord": "Point(2.751388888 42.488055555)",
+
     "coordinates": "Point(2.751388888 42.488055555)",
 
     "records": "56",
 
     "records": "56",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "IbrahimZ",
+
     "itemLabel": "IbrahimZ",
     "locationQid": "Q5776",
+
     "wikidata": "Q5776",
     "coord": "Point(35.206111111 31.704444444)",
+
     "coordinates": "Point(35.206111111 31.704444444)",
 
     "records": "55",
 
     "records": "55",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Samuel Waina",
+
     "itemLabel": "Samuel Waina",
     "locationQid": "Q1757",
+
     "wikidata": "Q1757",
     "coord": "Point(24.93417 60.17556)",
+
     "coordinates": "Point(24.93417 60.17556)",
 
     "records": "54",
 
     "records": "54",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "HappyMidnight",
+
     "itemLabel": "HappyMidnight",
     "locationQid": "Q42082",
+
     "wikidata": "Q42082",
     "coord": "Point(128.881111111 35.234166666)",
+
     "coordinates": "Point(128.881111111 35.234166666)",
 
     "records": "51",
 
     "records": "51",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ramjit Tudu",
+
     "itemLabel": "Ramjit Tudu",
     "locationQid": "Q171771",
+
     "wikidata": "Q171771",
     "coord": "Point(85.828055555 20.264444444)",
+
     "coordinates": "Point(85.828055555 20.264444444)",
 
     "records": "50",
 
     "records": "50",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Poldjko1",
+
     "itemLabel": "Poldjko1",
     "locationQid": "Q132830",
+
     "wikidata": "Q132830",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "49",
 
     "records": "49",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eavq",
+
     "itemLabel": "Eavq",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "47",
 
     "records": "47",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "咽頭べさ",
+
     "itemLabel": "咽頭べさ",
     "locationQid": "Q818742",
+
     "wikidata": "Q818742",
     "coord": "Point(97.666666666 16.166666666)",
+
     "coordinates": "Point(97.666666666 16.166666666)",
 
     "records": "46",
 
     "records": "46",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Orikrin1998",
+
     "itemLabel": "Orikrin1998",
     "locationQid": "Q42716",
+
     "wikidata": "Q42716",
     "coord": "Point(4.389722222 45.433888888)",
+
     "coordinates": "Point(4.389722222 45.433888888)",
 
     "records": "46",
 
     "records": "46",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mohau",
+
     "itemLabel": "Mohau",
     "locationQid": "Q258",
+
     "wikidata": "Q258",
     "coord": "Point(24.0 -29.0)",
+
     "coordinates": "Point(24.0 -29.0)",
 
     "records": "45",
 
     "records": "45",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Petrus yh",
+
     "itemLabel": "Vaishali Kotwal",
     "locationQid": "Q1515",
+
     "wikidata": "Q1538",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "44",
 
     "records": "44",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vaishali Kotwal",
+
     "itemLabel": "Petrus yh",
     "locationQid": "Q1538",
+
     "wikidata": "Q1515",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "44",
 
     "records": "44",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nirpikowan",
+
     "itemLabel": "Nirpikowan",
     "locationQid": "Q141760",
+
     "wikidata": "Q141760",
     "coord": "Point(-73.45 46.016666666)",
+
     "coordinates": "Point(-73.45 46.016666666)",
 
     "records": "43",
 
     "records": "43",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Thibaud379",
+
     "itemLabel": "Thibaud379",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "43",
 
     "records": "43",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Josette",
+
     "itemLabel": "सुबोध कुलकर्णी",
     "locationQid": "Q3240",
+
     "wikidata": "Q270176",
     "coord": "Point(5.083333333 43.5)",
+
     "coordinates": "Point(74.5 15.866666666)",
 
     "records": "42",
 
     "records": "42",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Franckk1",
+
     "itemLabel": "Nisaloj",
     "locationQid": "Q1008",
+
     "wikidata": "Q178136",
     "coord": "Point(-6.0 8.0)",
+
     "coordinates": "Point(-91.1875 14.773889)",
 
     "records": "42",
 
     "records": "42",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nisaloj",
+
     "itemLabel": "Josette",
     "locationQid": "Q178136",
+
     "wikidata": "Q3240",
     "coord": "Point(-91.1875 14.773889)",
+
     "coordinates": "Point(5.083333333 43.5)",
 
     "records": "42",
 
     "records": "42",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "सुबोध कुलकर्णी",
+
     "itemLabel": "Franckk1",
     "locationQid": "Q270176",
+
     "wikidata": "Q1008",
     "coord": "Point(74.5 15.866666666)",
+
     "coordinates": "Point(-6.0 8.0)",
 
     "records": "42",
 
     "records": "42",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bfonkoua7",
+
     "itemLabel": "Bfonkoua7",
     "locationQid": "Q132830",
+
     "wikidata": "Q132830",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "41",
 
     "records": "41",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AmmanM",
+
     "itemLabel": "AmmanM",
     "locationQid": "Q1297",
+
     "wikidata": "Q1297",
     "coord": "Point(-87.627777777 41.881944444)",
+
     "coordinates": "Point(-87.627777777 41.881944444)",
 
     "records": "41",
 
     "records": "41",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ARYAN MURMU",
+
     "itemLabel": "ARYAN MURMU",
     "locationQid": "Q2022279",
+
     "wikidata": "Q2022279",
     "coord": "Point(86.9 21.5)",
+
     "coordinates": "Point(86.9 21.5)",
 
     "records": "40",
 
     "records": "40",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Anonyme569",
+
     "itemLabel": "Anonyme569",
     "locationQid": "Q834",
+
     "wikidata": "Q834",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "39",
 
     "records": "39",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Susannaanas",
+
     "itemLabel": "Susannaanas",
     "locationQid": "Q33",
+
     "wikidata": "Q33",
     "coord": "Point(27.0 65.0)",
+
     "coordinates": "Point(27.0 65.0)",
 
     "records": "38",
 
     "records": "38",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sujata1963",
+
     "itemLabel": "Sujata1963",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "37",
 
     "records": "37",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "SabriaDE",
+
     "itemLabel": "SabriaDE",
     "locationQid": "Q586",
+
     "wikidata": "Q586",
     "coord": "Point(7.099722222 50.733888888)",
+
     "coordinates": "Point(7.099722222 50.733888888)",
 
     "records": "36",
 
     "records": "36",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ericcoul",
+
     "itemLabel": "Ericcoul",
     "locationQid": "Q1515",
+
     "wikidata": "Q1515",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "35",
 
     "records": "35",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Celestin723",
+
     "itemLabel": "Celestin723",
     "locationQid": "Q132830",
+
     "wikidata": "Q132830",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "34",
 
     "records": "34",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bolt Escargot",
+
     "itemLabel": "Bolt Escargot",
     "locationQid": "Q1524",
+
     "wikidata": "Q1524",
     "coord": "Point(23.728055555 37.984166666)",
+
     "coordinates": "Point(23.728055555 37.984166666)",
 
     "records": "34",
 
     "records": "34",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jiròni B.",
+
     "itemLabel": "Jiròni B.",
     "locationQid": "Q200202",
+
     "wikidata": "Q200202",
     "coord": "Point(1.490555555 45.8375)",
+
     "coordinates": "Point(1.490555555 45.8375)",
 
     "records": "34",
 
     "records": "34",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Claire Hannecart",
+
     "itemLabel": "Claire Hannecart",
     "locationQid": "Q142",
+
     "wikidata": "Q142",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "33",
 
     "records": "33",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Chavagne",
+
     "itemLabel": "Chavagne",
     "locationQid": "Q1465522",
+
     "wikidata": "Q1465522",
     "coord": "Point(4.295277777 46.706666666)",
+
     "coordinates": "Point(4.295277777 46.706666666)",
 
     "records": "32",
 
     "records": "32",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "fleur",
+
     "itemLabel": "fleur",
     "locationQid": "Q214086",
+
     "wikidata": "Q214086",
     "coord": "Point(6.15 46.2)",
+
     "coordinates": "Point(6.15 46.2)",
 
     "records": "32",
 
     "records": "32",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Txtdgtl",
+
     "itemLabel": "Txtdgtl",
     "locationQid": "Q1489",
+
     "wikidata": "Q1489",
     "coord": "Point(-99.145555555 19.419444444)",
+
     "coordinates": "Point(-99.145555555 19.419444444)",
 
     "records": "31",
 
     "records": "31",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rçag",
+
     "itemLabel": "Rçag",
     "locationQid": "Q3838",
+
     "wikidata": "Q3838",
     "coord": "Point(15.313888888 -4.331666666)",
+
     "coordinates": "Point(15.313888888 -4.331666666)",
 
     "records": "29",
 
     "records": "29",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jon Harald Søby (WMNO)",
+
     "itemLabel": "Jon Harald Søby (WMNO)",
     "locationQid": "Q107135",
+
     "wikidata": "Q107135",
     "coord": "Point(10.95 59.216667)",
+
     "coordinates": "Point(10.95 59.216667)",
 
     "records": "29",
 
     "records": "29",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Otourly",
+
     "itemLabel": "Otourly",
     "locationQid": "Q208770",
+
     "wikidata": "Q208770",
     "coord": "Point(4.719722222 45.989444444)",
+
     "coordinates": "Point(4.719722222 45.989444444)",
 
     "records": "29",
 
     "records": "29",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Beat Ruest",
+
     "itemLabel": "Sujataag",
     "locationQid": "Q39",
+
     "wikidata": "Q1538",
     "coord": "Point(8.231973 46.798562)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "28",
 
     "records": "28",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Cokewanna",
+
     "itemLabel": "Rhosyr358",
     "locationQid": "Q159",
+
     "wikidata": "Q42617191",
     "coord": "Point(94.25 66.416666666)",
+
     "coordinates": "Point(-4.33333 53.25)",
 
     "records": "28",
 
     "records": "28",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rhosyr358",
+
     "itemLabel": "Beat Ruest",
     "locationQid": "Q42617191",
+
     "wikidata": "Q39",
     "coord": "Point(-4.33333 53.25)",
+
     "coordinates": "Point(8.231973 46.798562)",
 
     "records": "28",
 
     "records": "28",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sujataag",
+
     "itemLabel": "Cokewanna",
     "locationQid": "Q1538",
+
     "wikidata": "Q159",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(94.25 66.416666666)",
 
     "records": "28",
 
     "records": "28",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Beusson",
+
     "itemLabel": "Beusson",
     "locationQid": "Q5705",
+
     "wikidata": "Q5705",
     "coord": "Point(1.47 41.81)",
+
     "coordinates": "Point(1.47 41.81)",
 
     "records": "27",
 
     "records": "27",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "John.d.new77",
+
     "itemLabel": "Vickylin77amis",
     "locationQid": "Q44989",
+
     "wikidata": "Q1867",
     "coord": "Point(-95.937222222 36.131388888)",
+
     "coordinates": "Point(121.531944444 25.047777777)",
 
     "records": "26",
 
     "records": "26",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nkuatebea",
+
     "itemLabel": "John.d.new77",
     "locationQid": "Q132830",
+
     "wikidata": "Q44989",
     "coord": "Point(9.7 4.05)",
+
     "coordinates": "Point(-95.937222222 36.131388888)",
 
     "records": "26",
 
     "records": "26",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ali",
+
     "itemLabel": "Nkuatebea",
     "locationQid": "Q1289",
+
     "wikidata": "Q132830",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(9.7 4.05)",
 
     "records": "26",
 
     "records": "26",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vickylin77amis",
+
     "itemLabel": "Ali",
     "locationQid": "Q1867",
+
     "wikidata": "Q1289",
     "coord": "Point(121.531944444 25.047777777)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "26",
 
     "records": "26",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Karol Szapsza",
+
     "itemLabel": "Estevoaei",
     "locationQid": "Q36",
+
     "wikidata": "Q12411",
     "coord": "Point(19.0 52.0)",
+
     "coordinates": "Point(-8.6475 42.433611111)",
 
     "records": "25",
 
     "records": "25",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Estevoaei",
+
     "itemLabel": "Karol Szapsza",
     "locationQid": "Q12411",
+
     "wikidata": "Q36",
     "coord": "Point(-8.6475 42.433611111)",
+
     "coordinates": "Point(19.0 52.0)",
 
     "records": "25",
 
     "records": "25",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Milo",
+
     "itemLabel": "Elsss10",
     "locationQid": "Q12559",
+
     "wikidata": "Q168159",
     "coord": "Point(5.716666666 45.183333333)",
+
     "coordinates": "Point(-4.376728 53.293975)",
 
     "records": "25",
 
     "records": "25",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Elsss10",
+
     "itemLabel": "Milo",
     "locationQid": "Q168159",
+
     "wikidata": "Q12559",
     "coord": "Point(-4.376728 53.293975)",
+
     "coordinates": "Point(5.716666666 45.183333333)",
 
     "records": "25",
 
     "records": "25",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Emptyfear",
+
     "itemLabel": "Emptyfear",
     "locationQid": "Q1953",
+
     "wikidata": "Q1953",
     "coord": "Point(44.514444444 40.181388888)",
+
     "coordinates": "Point(44.514444444 40.181388888)",
 
     "records": "25",
 
     "records": "25",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Akoua2021",
+
     "itemLabel": "Modjou",
     "locationQid": "Q962",
+
     "wikidata": "Q1515",
     "coord": "Point(2.183333333 8.833333333)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "24",
 
     "records": "24",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "विशाखा वेलणकर",
+
     "itemLabel": "Kemwa Hora Rémy",
     "locationQid": "Q1538",
+
     "wikidata": "Q818824",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(14.327545 10.582321944)",
 
     "records": "24",
 
     "records": "24",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kemwa Hora Rémy",
+
     "itemLabel": "विशाखा वेलणकर",
     "locationQid": "Q818824",
+
     "wikidata": "Q1538",
     "coord": "Point(14.327545 10.582321944)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "24",
 
     "records": "24",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Modjou",
+
     "itemLabel": "Akoua2021",
     "locationQid": "Q1515",
+
     "wikidata": "Q962",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(2.183333333 8.833333333)",
 
     "records": "24",
 
     "records": "24",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Michael Schönitzer (WMDE)",
+
     "itemLabel": "Calab22",
     "locationQid": "Q1726",
+
     "wikidata": "Q42617191",
     "coord": "Point(11.575 48.1375)",
+
     "coordinates": "Point(-4.33333 53.25)",
 
     "records": "23",
 
     "records": "23",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Olivier Yao",
+
     "itemLabel": "Michael Schönitzer (WMDE)",
     "locationQid": "Q15",
+
     "wikidata": "Q1726",
     "coord": "Point(7.1881 21.09375)",
+
     "coordinates": "Point(11.575 48.1375)",
 
     "records": "23",
 
     "records": "23",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Calab22",
+
     "itemLabel": "Olivier Yao",
     "locationQid": "Q42617191",
+
     "wikidata": "Q15",
     "coord": "Point(-4.33333 53.25)",
+
     "coordinates": "Point(7.1881 21.09375)",
 
     "records": "23",
 
     "records": "23",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Leonfd1992",
+
     "itemLabel": "रोहिणीरेवती",
     "locationQid": "Q739",
+
     "wikidata": "Q1538",
     "coord": "Point(-74.0 4.0)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "22",
 
     "records": "22",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Henning Schlottmann",
+
     "itemLabel": "Leonfd1992",
     "locationQid": "Q1726",
+
     "wikidata": "Q739",
     "coord": "Point(11.575 48.1375)",
+
     "coordinates": "Point(-74.0 4.0)",
 
     "records": "22",
 
     "records": "22",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "MSa_Eu",
+
     "itemLabel": "Henning Schlottmann",
     "locationQid": "Q239",
+
     "wikidata": "Q1726",
     "coord": "Point(4.351666666 50.846666666)",
+
     "coordinates": "Point(11.575 48.1375)",
 
     "records": "22",
 
     "records": "22",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "रोहिणीरेवती",
+
     "itemLabel": "MSa_Eu",
     "locationQid": "Q1538",
+
     "wikidata": "Q239",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(4.351666666 50.846666666)",
 
     "records": "22",
 
     "records": "22",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Llf",
+
     "itemLabel": "Llf",
     "locationQid": "Q8646",
+
     "wikidata": "Q8646",
     "coord": "Point(114.158611111 22.278333333)",
+
     "coordinates": "Point(114.158611111 22.278333333)",
 
     "records": "21",
 
     "records": "21",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jberkel",
+
     "itemLabel": "Jberkel",
     "locationQid": "Q183",
+
     "wikidata": "Q183",
     "coord": "Point(10.0 51.0)",
+
     "coordinates": "Point(10.0 51.0)",
 
     "records": "21",
 
     "records": "21",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Frankdtcheb",
+
     "itemLabel": "Tim Tim (VD fr)",
     "locationQid": "Q289267",
+
     "wikidata": "Q184154",
     "coord": "Point(10.05 5.45)",
+
     "coordinates": "Point(-0.77 48.072777777)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Placide.sogbossi",
+
     "itemLabel": "Frankdtcheb",
     "locationQid": "Q962",
+
     "wikidata": "Q289267",
     "coord": "Point(2.183333333 8.833333333)",
+
     "coordinates": "Point(10.05 5.45)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Cefni1",
+
     "itemLabel": "Cefni1",
     "locationQid": "Q168159",
+
     "wikidata": "Q168159",
     "coord": "Point(-4.376728 53.293975)",
+
     "coordinates": "Point(-4.376728 53.293975)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "PRB",
+
     "itemLabel": "Placide.sogbossi",
     "locationQid": "Q84",
+
     "wikidata": "Q962",
     "coord": "Point(-0.1275 51.507222222)",
+
     "coordinates": "Point(2.183333333 8.833333333)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tim Tim (VD fr)",
+
     "itemLabel": "Filipinayzd",
     "locationQid": "Q184154",
+
     "wikidata": "Q208749",
     "coord": "Point(-0.77 48.072777777)",
+
     "coordinates": "Point(123.166666666 13.65)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Filipinayzd",
+
     "itemLabel": "PRB",
     "locationQid": "Q208749",
+
     "wikidata": "Q84",
     "coord": "Point(123.166666666 13.65)",
+
     "coordinates": "Point(-0.1275 51.507222222)",
 
     "records": "20",
 
     "records": "20",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Florenciac",
+
     "itemLabel": "Florenciac",
     "locationQid": "Q1486",
+
     "wikidata": "Q1486",
     "coord": "Point(-58.381944444 -34.599722222)",
+
     "coordinates": "Point(-58.381944444 -34.599722222)",
 
     "records": "19",
 
     "records": "19",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Koffi.noel",
+
     "itemLabel": "Koffi.noel",
     "locationQid": "Q1515",
+
     "wikidata": "Q1515",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "19",
 
     "records": "19",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "S-tel",
+
     "itemLabel": "S-tel",
     "locationQid": "Q12751",
+
     "wikidata": "Q12751",
     "coord": "Point(6.333333333 46.0)",
+
     "coordinates": "Point(6.333333333 46.0)",
 
     "records": "18",
 
     "records": "18",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Erzianj jurnalist",
+
     "itemLabel": "Erzianj jurnalist",
     "locationQid": "Q649",
+
     "wikidata": "Q649",
     "coord": "Point(37.617777777 55.755833333)",
+
     "coordinates": "Point(37.617777777 55.755833333)",
 
     "records": "18",
 
     "records": "18",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Juindeumilvin",
+
     "itemLabel": "Awel.jones",
     "locationQid": "Q1289",
+
     "wikidata": "Q5177811",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(145.5 -37.416666666)",
 
     "records": "17",
 
     "records": "17",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Amre-Marie",
+
     "itemLabel": "Amre-Marie",
     "locationQid": "Q1726",
+
     "wikidata": "Q1726",
     "coord": "Point(11.575 48.1375)",
+
     "coordinates": "Point(11.575 48.1375)",
 
     "records": "17",
 
     "records": "17",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Awel.jones",
+
     "itemLabel": "Juindeumilvin",
     "locationQid": "Q5177811",
+
     "wikidata": "Q1289",
     "coord": "Point(145.5 -37.416666666)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "17",
 
     "records": "17",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Camara aminata",
+
     "itemLabel": "Camara aminata",
     "locationQid": "Q1515",
+
     "wikidata": "Q1515",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "16",
 
     "records": "16",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nicryc",
+
     "itemLabel": "Aitzolete",
     "locationQid": "Q42716",
+
     "wikidata": "Q1618305",
     "coord": "Point(4.389722222 45.433888888)",
+
     "coordinates": "Point(-2.385 43.307222)",
 
     "records": "16",
 
     "records": "16",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aitzolete",
+
     "itemLabel": "Nicryc",
     "locationQid": "Q1618305",
+
     "wikidata": "Q42716",
     "coord": "Point(-2.385 43.307222)",
+
     "coordinates": "Point(4.389722222 45.433888888)",
 
     "records": "16",
 
     "records": "16",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nurtsio",
+
     "itemLabel": "Masssly",
     "locationQid": "Q1757",
+
     "wikidata": "Q3761",
     "coord": "Point(24.93417 60.17556)",
+
     "coordinates": "Point(-0.187 5.6037)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Myriam Pied",
+
     "itemLabel": "VALENTIN NVJ",
     "locationQid": "Q6643",
+
     "wikidata": "Q146723",
     "coord": "Point(2.751388888 42.488055555)",
+
     "coordinates": "Point(25.191111111 0.515277777)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "VALENTIN NVJ",
+
     "itemLabel": "Nurtsio",
     "locationQid": "Q146723",
+
     "wikidata": "Q1757",
     "coord": "Point(25.191111111 0.515277777)",
+
     "coordinates": "Point(24.93417 60.17556)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vij~frwiki",
+
     "itemLabel": "Myriam Pied",
     "locationQid": "Q211134",
+
     "wikidata": "Q6643",
     "coord": "Point(5.717777777 45.142777777)",
+
     "coordinates": "Point(2.751388888 42.488055555)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Andrey672",
+
     "itemLabel": "Vij~frwiki",
     "locationQid": "Q649",
+
     "wikidata": "Q211134",
     "coord": "Point(37.617777777 55.755833333)",
+
     "coordinates": "Point(5.717777777 45.142777777)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Masssly",
+
     "itemLabel": "Andrey672",
     "locationQid": "Q3761",
+
     "wikidata": "Q649",
     "coord": "Point(-0.187 5.6037)",
+
     "coordinates": "Point(37.617777777 55.755833333)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jmpmann",
+
     "itemLabel": "Jmpmann",
     "locationQid": "Q30",
+
     "wikidata": "Q30",
     "coord": "Point(-98.5795 39.828175)",
+
     "coordinates": "Point(-98.5795 39.828175)",
 
     "records": "15",
 
     "records": "15",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "विदुला",
+
     "itemLabel": "विदुला",
     "locationQid": "Q1538",
+
     "wikidata": "Q1538",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "14",
 
     "records": "14",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Thérèse Ottawa",
+
     "itemLabel": "Thérèse Ottawa",
     "locationQid": "Q3285285",
+
     "wikidata": "Q3285285",
     "coord": "Point(-74.391666666 47.2225)",
+
     "coordinates": "Point(-74.391666666 47.2225)",
 
     "records": "14",
 
     "records": "14",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yakshitha",
+
     "itemLabel": "Yakshitha",
     "locationQid": "Q127041",
+
     "wikidata": "Q127041",
     "coord": "Point(74.880555555 12.870277777)",
+
     "coordinates": "Point(74.880555555 12.870277777)",
 
     "records": "13",
 
     "records": "13",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nicolas Lopez de Silanes WMFr",
+
     "itemLabel": "Nicolas Lopez de Silanes WMFr",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "13",
 
     "records": "13",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Flavie",
+
     "itemLabel": "Keyomerd",
     "locationQid": "Q1479",
+
     "wikidata": "Q693929",
     "coord": "Point(-0.579444444 44.837777777)",
+
     "coordinates": "Point(40.586111111 37.193888888)",
 
     "records": "13",
 
     "records": "13",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Keyomerd",
+
     "itemLabel": "Flavie",
     "locationQid": "Q693929",
+
     "wikidata": "Q1479",
     "coord": "Point(40.586111111 37.193888888)",
+
     "coordinates": "Point(-0.579444444 44.837777777)",
 
     "records": "13",
 
     "records": "13",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JEP Visiteur 5",
+
     "itemLabel": "Attention",
     "locationQid": "Q6602",
+
     "wikidata": "Q834",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.6 46.066666666)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Attention",
+
     "itemLabel": "Wang Cheng",
     "locationQid": "Q834",
+
     "wikidata": "Q1867",
     "coord": "Point(7.6 46.066666666)",
+
     "coordinates": "Point(121.531944444 25.047777777)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Higa4",
+
     "itemLabel": "JEP Visiteur 5",
     "locationQid": "Q17",
+
     "wikidata": "Q6602",
     "coord": "Point(136.0 35.0)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Soroor",
+
     "itemLabel": "Fokaczino",
     "locationQid": "Q1289",
+
     "wikidata": "Q1799",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(17.0325 51.11)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zquad974",
+
     "itemLabel": "Zquad974",
     "locationQid": "Q90",
+
     "wikidata": "Q90",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fokaczino",
+
     "itemLabel": "Bile rene",
     "locationQid": "Q1799",
+
     "wikidata": "Q818824",
     "coord": "Point(17.0325 51.11)",
+
     "coordinates": "Point(14.327545 10.582321944)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Neima Paz",
+
     "itemLabel": "Neima Paz",
     "locationQid": "Q739",
+
     "wikidata": "Q739",
     "coord": "Point(-74.0 4.0)",
+
     "coordinates": "Point(-74.0 4.0)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Obihoja",
+
     "itemLabel": "Obihoja",
     "locationQid": "Q3787",
+
     "wikidata": "Q3787",
     "coord": "Point(7.491388888 9.055555555)",
+
     "coordinates": "Point(7.491388888 9.055555555)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bile rene",
+
     "itemLabel": "Soroor",
     "locationQid": "Q818824",
+
     "wikidata": "Q1289",
     "coord": "Point(14.327545 10.582321944)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Seb35",
+
     "itemLabel": "Higa4",
     "locationQid": "Q647",
+
     "wikidata": "Q17",
     "coord": "Point(-1.680833333 48.114166666)",
+
     "coordinates": "Point(136.0 35.0)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Wang Cheng",
+
     "itemLabel": "Seb35",
     "locationQid": "Q1867",
+
     "wikidata": "Q647",
     "coord": "Point(121.531944444 25.047777777)",
+
     "coordinates": "Point(-1.680833333 48.114166666)",
 
     "records": "12",
 
     "records": "12",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JEP Visiteuse 7",
+
     "itemLabel": "JEP Visiteuse 7",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JEP Visiteuse 9",
+
     "itemLabel": "JEP Visiteuse 9",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AB Louis",
+
     "itemLabel": "तृप्ती कुलकर्णी",
     "locationQid": "Q142",
+
     "wikidata": "Q1538",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 14",
+
     "itemLabel": "Visiteur Journée 2 - 14",
     "locationQid": "Q159469",
+
     "wikidata": "Q159469",
     "coord": "Point(6.3925 45.675833333)",
+
     "coordinates": "Point(6.3925 45.675833333)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "तृप्ती कुलकर्णी",
+
     "itemLabel": "AB Louis",
     "locationQid": "Q1538",
+
     "wikidata": "Q142",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vahidmasrour",
+
     "itemLabel": "Vahidmasrour",
     "locationQid": "Q736",
+
     "wikidata": "Q736",
     "coord": "Point(-78.0 -1.0)",
+
     "coordinates": "Point(-78.0 -1.0)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Saubry",
+
     "itemLabel": "Saubry",
     "locationQid": "Q869",
+
     "wikidata": "Q869",
     "coord": "Point(101.0 14.0)",
+
     "coordinates": "Point(101.0 14.0)",
 
     "records": "11",
 
     "records": "11",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Anniina",
+
     "itemLabel": "Anniina",
     "locationQid": "Q1757",
+
     "wikidata": "Q1757",
     "coord": "Point(24.93417 60.17556)",
+
     "coordinates": "Point(24.93417 60.17556)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jean",
+
     "itemLabel": "Jean",
     "locationQid": "Q6730",
+
     "wikidata": "Q6730",
     "coord": "Point(2.894722222 42.6975)",
+
     "coordinates": "Point(2.894722222 42.6975)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nagarajk3762",
+
     "itemLabel": "Dipali S Shende",
     "locationQid": "Q794818",
+
     "wikidata": "Q1538",
     "coord": "Point(76.38 14.9)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ropsterkwater",
+
     "itemLabel": "Gintek",
     "locationQid": "Q47887",
+
     "wikidata": "Q31487",
     "coord": "Point(5.8625 51.8475)",
+
     "coordinates": "Point(19.937222222 50.061388888)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Dipali S Shende",
+
     "itemLabel": "Nagarajk3762",
     "locationQid": "Q1538",
+
     "wikidata": "Q794818",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(76.38 14.9)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gintek",
+
     "itemLabel": "Ropsterkwater",
     "locationQid": "Q31487",
+
     "wikidata": "Q47887",
     "coord": "Point(19.937222222 50.061388888)",
+
     "coordinates": "Point(5.8625 51.8475)",
 
     "records": "10",
 
     "records": "10",
 
     "layer": "10-1,000"
 
     "layer": "10-1,000"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Morvil73",
+
     "itemLabel": "Vahagn Petrosyan",
     "locationQid": "Q46",
+
     "wikidata": "Q1953",
     "coord": "Point(9.14062 48.690959)",
+
     "coordinates": "Point(44.514444444 40.181388888)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vahagn Petrosyan",
+
     "itemLabel": "Harditaher",
     "locationQid": "Q1953",
+
     "wikidata": "Q7253",
     "coord": "Point(44.514444444 40.181388888)",
+
     "coordinates": "Point(100.360556 -0.955556)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Harditaher",
+
     "itemLabel": "Harditaher",
     "locationQid": "Q7253",
+
     "wikidata": "Q7253",
     "coord": "Point(100.360556 -0.955556)",
+
     "coordinates": "Point(100.45 -0.983333333)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Harditaher",
+
     "itemLabel": "Morvil73",
     "locationQid": "Q7253",
+
     "wikidata": "Q46",
     "coord": "Point(100.45 -0.983333333)",
+
     "coordinates": "Point(9.14062 48.690959)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Allahverdi Verdizade",
+
     "itemLabel": "Allahverdi Verdizade",
     "locationQid": "Q34",
+
     "wikidata": "Q34",
     "coord": "Point(15.0 61.0)",
+
     "coordinates": "Point(15.0 61.0)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aah Rix",
+
     "itemLabel": "Aah Rix",
     "locationQid": "Q42168",
+
     "wikidata": "Q42168",
     "coord": "Point(3.086944444 45.779722222)",
+
     "coordinates": "Point(3.086944444 45.779722222)",
 
     "records": "9",
 
     "records": "9",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 7",
+
     "itemLabel": "SemyonSav",
     "locationQid": "Q6602",
+
     "wikidata": "Q900",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(49.114444444 55.790833333)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "SemyonSav",
+
     "itemLabel": "Кояш",
     "locationQid": "Q900",
+
     "wikidata": "Q900",
     "coord": "Point(49.114444444 55.790833333)",
+
     "coordinates": "Point(49.114444444 55.790833333)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Кояш",
+
     "itemLabel": "Visiteuse Journée 2 - 7",
     "locationQid": "Q900",
+
     "wikidata": "Q6602",
     "coord": "Point(49.114444444 55.790833333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "André Costa (WMSE)",
+
     "itemLabel": "Koreller",
     "locationQid": "Q34",
+
     "wikidata": "Q12191",
     "coord": "Point(15.0 61.0)",
+
     "coordinates": "Point(-1.553888888 47.217222222)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Abreham97",
+
     "itemLabel": "Gangdhara k b",
     "locationQid": "Q38",
+
     "wikidata": "Q591781",
     "coord": "Point(12.5 42.5)",
+
     "coordinates": "Point(76.49 12.21)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Joe Pig",
+
     "itemLabel": "Felixyog",
     "locationQid": "Q340",
+
     "wikidata": "Q1352",
     "coord": "Point(-73.561666666 45.508888888)",
+
     "coordinates": "Point(80.275 13.0825)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 20",
+
     "itemLabel": "Joe Pig",
     "locationQid": "Q22517",
+
     "wikidata": "Q340",
     "coord": "Point(7.661111111 48.421944444)",
+
     "coordinates": "Point(-73.561666666 45.508888888)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 19",
+
     "itemLabel": "Visiteuse Journée 2 - 19",
     "locationQid": "Q21388",
+
     "wikidata": "Q21388",
     "coord": "Point(7.683055555 48.5575)",
+
     "coordinates": "Point(7.683055555 48.5575)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Deansfa",
+
     "itemLabel": "Visiteur Journée 2 - 20",
     "locationQid": "Q30",
+
     "wikidata": "Q22517",
     "coord": "Point(-98.5795 39.828175)",
+
     "coordinates": "Point(7.661111111 48.421944444)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Felixyog",
+
     "itemLabel": "André Costa (WMSE)",
     "locationQid": "Q1352",
+
     "wikidata": "Q34",
     "coord": "Point(80.275 13.0825)",
+
     "coordinates": "Point(15.0 61.0)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gangdhara k b",
+
     "itemLabel": "Abreham97",
     "locationQid": "Q591781",
+
     "wikidata": "Q38",
     "coord": "Point(76.49 12.21)",
+
     "coordinates": "Point(12.5 42.5)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Koreller",
+
     "itemLabel": "Deansfa",
     "locationQid": "Q12191",
+
     "wikidata": "Q30",
     "coord": "Point(-1.553888888 47.217222222)",
+
     "coordinates": "Point(-98.5795 39.828175)",
 
     "records": "8",
 
     "records": "8",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 2",
+
     "itemLabel": "Neerwan",
     "locationQid": "Q90",
+
     "wikidata": "Q142",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Neerwan",
+
     "itemLabel": "Asutosha",
     "locationQid": "Q142",
+
     "wikidata": "Q171771",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(85.828055555 20.264444444)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Iwan.Aucamp",
+
     "itemLabel": "Visiteur Journée 2 - 2",
     "locationQid": "Q20",
+
     "wikidata": "Q90",
     "coord": "Point(11.0 65.0)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 13",
+
     "itemLabel": "Visiteur Journée 2 - 8",
     "locationQid": "Q22639",
+
     "wikidata": "Q760624",
     "coord": "Point(7.749166666 48.606944444)",
+
     "coordinates": "Point(1.710833333 48.974166666)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 17",
+
     "itemLabel": "Visiteur Journée 2",
     "locationQid": "Q22639",
+
     "wikidata": "Q3148",
     "coord": "Point(7.749166666 48.606944444)",
+
     "coordinates": "Point(4.416666666 44.666666666)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2",
+
     "itemLabel": "Test.odia",
     "locationQid": "Q3148",
+
     "wikidata": "Q22048",
     "coord": "Point(4.416666666 44.666666666)",
+
     "coordinates": "Point(85.5 20.15)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Arokatan",
+
     "itemLabel": "Tenshi 98",
     "locationQid": "Q155",
+
     "wikidata": "Q386661",
     "coord": "Point(-53.0 -14.0)",
+
     "coordinates": "Point(139.491111111 35.338833333)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tenshi 98",
+
     "itemLabel": "Visiteur Journée 2 - 13",
     "locationQid": "Q386661",
+
     "wikidata": "Q22639",
     "coord": "Point(139.491111111 35.338833333)",
+
     "coordinates": "Point(7.749166666 48.606944444)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "VIGNERON",
+
     "itemLabel": "Visiteuse Journée 2 - 17",
     "locationQid": "Q647",
+
     "wikidata": "Q22639",
     "coord": "Point(-1.680833333 48.114166666)",
+
     "coordinates": "Point(7.749166666 48.606944444)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 8",
+
     "itemLabel": "Iwan.Aucamp",
     "locationQid": "Q760624",
+
     "wikidata": "Q20",
     "coord": "Point(1.710833333 48.974166666)",
+
     "coordinates": "Point(11.0 65.0)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "The Editor's Apprentice",
+
     "itemLabel": "Arokatan",
     "locationQid": "Q12606",
+
     "wikidata": "Q155",
     "coord": "Point(-122.0 39.0)",
+
     "coordinates": "Point(-53.0 -14.0)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Asutosha",
+
     "itemLabel": "VIGNERON",
     "locationQid": "Q171771",
+
     "wikidata": "Q647",
     "coord": "Point(85.828055555 20.264444444)",
+
     "coordinates": "Point(-1.680833333 48.114166666)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Test.odia",
+
     "itemLabel": "The Editor's Apprentice",
     "locationQid": "Q22048",
+
     "wikidata": "Q12606",
     "coord": "Point(85.5 20.15)",
+
     "coordinates": "Point(-122.0 39.0)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ruhan",
+
     "itemLabel": "Ruhan",
     "locationQid": "Q1354",
+
     "wikidata": "Q1354",
     "coord": "Point(90.394444444 23.728888888)",
+
     "coordinates": "Point(90.394444444 23.728888888)",
 
     "records": "7",
 
     "records": "7",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 9",
+
     "itemLabel": "JEP Visiteur 8",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 21",
+
     "itemLabel": "Visiteuse Journée 2 - 9",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 22",
+
     "itemLabel": "Visiteur Journée 2 - 21",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JEP Visiteur 8",
+
     "itemLabel": "Visiteuse Journée 2 - 22",
     "locationQid": "Q6602",
+
     "wikidata": "Q6602",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yellowmurri",
+
     "itemLabel": "Yellowmurri",
     "locationQid": "Q14314",
+
     "wikidata": "Q14314",
     "coord": "Point(-8.533333333 42.883333333)",
+
     "coordinates": "Point(-8.533333333 42.883333333)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Adrijaned",
+
     "itemLabel": "Marajozkee",
     "locationQid": "Q213",
+
     "wikidata": "Q1348",
     "coord": "Point(16.0 49.5)",
+
     "coordinates": "Point(88.3638815 22.5726723)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 18",
+
     "itemLabel": "1Apollinariya1",
     "locationQid": "Q22660",
+
     "wikidata": "Q159",
     "coord": "Point(7.714444444 48.524722222)",
+
     "coordinates": "Point(94.25 66.416666666)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 15",
+
     "itemLabel": "Demo2021",
     "locationQid": "Q21454",
+
     "wikidata": "Q456",
     "coord": "Point(7.863611111 48.783888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 21",
+
     "itemLabel": "Visiteur Journée 2 - 15",
     "locationQid": "Q22888",
+
     "wikidata": "Q21454",
     "coord": "Point(7.578611111 48.877777777)",
+
     "coordinates": "Point(7.863611111 48.783888888)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "1Apollinariya1",
+
     "itemLabel": "Visiteur Journée 2 - 18",
     "locationQid": "Q159",
+
     "wikidata": "Q22660",
     "coord": "Point(94.25 66.416666666)",
+
     "coordinates": "Point(7.714444444 48.524722222)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Marajozkee",
+
     "itemLabel": "Visiteuse Journée 2 - 21",
     "locationQid": "Q1348",
+
     "wikidata": "Q22888",
     "coord": "Point(88.3638815 22.5726723)",
+
     "coordinates": "Point(7.578611111 48.877777777)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Demo2021",
+
     "itemLabel": "Adrijaned",
     "locationQid": "Q456",
+
     "wikidata": "Q213",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(16.0 49.5)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AndiPersti",
+
     "itemLabel": "Sélim95",
     "locationQid": "Q40",
+
     "wikidata": "Q380514",
     "coord": "Point(14.0 48.0)",
+
     "coordinates": "Point(3.007222222 42.705555555)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "liaa71",
+
     "itemLabel": "lilou66",
     "locationQid": "Q8970",
+
     "wikidata": "Q450961",
     "coord": "Point(2.942777777 42.680555555)",
+
     "coordinates": "Point(2.981666666 42.639722222)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "enzo06",
+
     "itemLabel": "Nagore Irastorza",
     "locationQid": "Q6730",
+
     "wikidata": "Q1441329",
     "coord": "Point(2.894722222 42.6975)",
+
     "coordinates": "Point(-1.9749167 43.2661645)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jamel66",
+
     "itemLabel": "enzo06",
     "locationQid": "Q6730",
+
     "wikidata": "Q6730",
     "coord": "Point(2.894722222 42.6975)",
+
     "coordinates": "Point(2.894722222 42.6975)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nagore Irastorza",
+
     "itemLabel": "Jamel66",
     "locationQid": "Q1441329",
+
     "wikidata": "Q6730",
     "coord": "Point(-1.9749167 43.2661645)",
+
     "coordinates": "Point(2.894722222 42.6975)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sélim95",
+
     "itemLabel": "liaa71",
     "locationQid": "Q380514",
+
     "wikidata": "Q8970",
     "coord": "Point(3.007222222 42.705555555)",
+
     "coordinates": "Point(2.942777777 42.680555555)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "lilou66",
+
     "itemLabel": "AndiPersti",
     "locationQid": "Q450961",
+
     "wikidata": "Q40",
     "coord": "Point(2.981666666 42.639722222)",
+
     "coordinates": "Point(14.0 48.0)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Laplumechanceuse18",
+
     "itemLabel": "Laplumechanceuse18",
     "locationQid": "Q34261",
+
     "wikidata": "Q34261",
     "coord": "Point(-72.338611111 18.5425)",
+
     "coordinates": "Point(-72.338611111 18.5425)",
 
     "records": "6",
 
     "records": "6",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jnov2.0",
+
     "itemLabel": "ZarinkaIM",
     "locationQid": "Q1515",
+
     "wikidata": "Q900",
     "coord": "Point(-4.026666666 5.336388888)",
+
     "coordinates": "Point(49.114444444 55.790833333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 3",
+
     "itemLabel": "Олимпиадница",
     "locationQid": "Q6602",
+
     "wikidata": "Q900",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(49.114444444 55.790833333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 5",
+
     "itemLabel": "Nonovian",
     "locationQid": "Q6602",
+
     "wikidata": "Q142",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 12",
+
     "itemLabel": "Belkacem77",
     "locationQid": "Q6602",
+
     "wikidata": "Q233645",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(4.058333 36.725)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 26",
+
     "itemLabel": "Jnov2.0",
     "locationQid": "Q6602",
+
     "wikidata": "Q1515",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(-4.026666666 5.336388888)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ripunn",
+
     "itemLabel": "Visiteuse Journée 2 - 3",
     "locationQid": "Q22502",
+
     "wikidata": "Q6602",
     "coord": "Point(121.0 23.766666666)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Belkacem77",
+
     "itemLabel": "Visiteur Journée 2 - 5",
     "locationQid": "Q233645",
+
     "wikidata": "Q6602",
     "coord": "Point(4.058333 36.725)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Silke.c.b",
+
     "itemLabel": "Visiteuse Journée 2 - 12",
     "locationQid": "Q220",
+
     "wikidata": "Q6602",
     "coord": "Point(12.482777777 41.893055555)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Snizhana Umanets",
+
     "itemLabel": "Visiteuse Journée 2 - 26",
     "locationQid": "Q83247",
+
     "wikidata": "Q6602",
     "coord": "Point(-8.416666666 41.533333333)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yuliyudo",
+
     "itemLabel": "Ripunn",
     "locationQid": "Q83247",
+
     "wikidata": "Q22502",
     "coord": "Point(-8.416666666 41.533333333)",
+
     "coordinates": "Point(121.0 23.766666666)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nonovian",
+
     "itemLabel": "Snizhana Umanets",
     "locationQid": "Q142",
+
     "wikidata": "Q83247",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(-8.416666666 41.533333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ZarinkaIM",
+
     "itemLabel": "Yuliyudo",
     "locationQid": "Q900",
+
     "wikidata": "Q83247",
     "coord": "Point(49.114444444 55.790833333)",
+
     "coordinates": "Point(-8.416666666 41.533333333)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Олимпиадница",
+
     "itemLabel": "Silke.c.b",
     "locationQid": "Q900",
+
     "wikidata": "Q220",
     "coord": "Point(49.114444444 55.790833333)",
+
     "coordinates": "Point(12.482777777 41.893055555)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 11",
+
     "itemLabel": "Michail Angelos Georgoulas",
     "locationQid": "Q22160",
+
     "wikidata": "Q39",
     "coord": "Point(7.258333333 48.767777777)",
+
     "coordinates": "Point(8.231973 46.798562)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteur Journée 2 - 28",
+
     "itemLabel": "Hubert",
     "locationQid": "Q21354",
+
     "wikidata": "Q12709",
     "coord": "Point(7.713611111 48.551111111)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 1",
+
     "itemLabel": "Jésus",
     "locationQid": "Q22902",
+
     "wikidata": "Q12709",
     "coord": "Point(7.783888888 48.696388888)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Trikutdas",
+
     "itemLabel": "Kévin",
     "locationQid": "Q47916",
+
     "wikidata": "Q12709",
     "coord": "Point(80.947 26.847)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hubert",
+
     "itemLabel": "Visiteur Journée 2 - 28",
     "locationQid": "Q12709",
+
     "wikidata": "Q21354",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(7.713611111 48.551111111)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jésus",
+
     "itemLabel": "Visiteuse Journée 2 - 11",
     "locationQid": "Q12709",
+
     "wikidata": "Q22160",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(7.258333333 48.767777777)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kévin",
+
     "itemLabel": "Visiteuse Journée 2 - 1",
     "locationQid": "Q12709",
+
     "wikidata": "Q22902",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(7.783888888 48.696388888)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "MaroBos",
+
     "itemLabel": "MaroBos",
     "locationQid": "Q928",
+
     "wikidata": "Q928",
     "coord": "Point(123.0 12.0)",
+
     "coordinates": "Point(123.0 12.0)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hector",
+
     "itemLabel": "Hector",
     "locationQid": "Q11981",
+
     "wikidata": "Q11981",
     "coord": "Point(4.975277777 45.830277777)",
+
     "coordinates": "Point(4.975277777 45.830277777)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tom",
+
     "itemLabel": "Tom",
     "locationQid": "Q12709",
+
     "wikidata": "Q12709",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Michail Angelos Georgoulas",
+
     "itemLabel": "Shanagalarama",
     "locationQid": "Q39",
+
     "wikidata": "Q1361",
     "coord": "Point(8.231973 46.798562)",
+
     "coordinates": "Point(78.474722222 17.361666666)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Shanagalarama",
+
     "itemLabel": "Trikutdas",
     "locationQid": "Q1361",
+
     "wikidata": "Q47916",
     "coord": "Point(78.474722222 17.361666666)",
+
     "coordinates": "Point(80.947 26.847)",
 
     "records": "5",
 
     "records": "5",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 25",
+
     "itemLabel": "Prosiect Wici Mon",
     "locationQid": "Q6602",
+
     "wikidata": "Q168159",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(-4.376728 53.293975)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Laurekarell",
+
     "itemLabel": "Zhnka",
     "locationQid": "Q23211647",
+
     "wikidata": "Q1879573",
     "coord": "Point(-3.98169 5.34993)",
+
     "coordinates": "Point(13.164760826 49.603601071)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Franz.Roos.1955",
+
     "itemLabel": "Ninovolador",
     "locationQid": "Q11943",
+
     "wikidata": "Q2887",
     "coord": "Point(8.656388888 47.413055611)",
+
     "coordinates": "Point(-70.666666666 -33.45)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Truchas13108",
+
     "itemLabel": "Nikita2018",
     "locationQid": "Q65",
+
     "wikidata": "Q2158520",
     "coord": "Point(-118.24368 34.05223)",
+
     "coordinates": "Point(-72.8 19.783333333)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "LuneMarine",
+
     "itemLabel": "WikiGaufrette00",
     "locationQid": "Q214086",
+
     "wikidata": "Q7003",
     "coord": "Point(6.15 46.2)",
+
     "coordinates": "Point(5.041944444 47.323055555)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Pavsrinivasa",
+
     "itemLabel": "Laurekarell",
     "locationQid": "Q1355",
+
     "wikidata": "Q23211647",
     "coord": "Point(77.5912997 12.9791198)",
+
     "coordinates": "Point(-3.98169 5.34993)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Leolucas1980gmail",
+
     "itemLabel": "Visiteuse Journée 2 - 25",
     "locationQid": "Q2844",
+
     "wikidata": "Q6602",
     "coord": "Point(-47.882777777 -15.793888888)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Imad El Mouak",
+
     "itemLabel": "Truchas13108",
     "locationQid": "Q12709",
+
     "wikidata": "Q65",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(-118.24368 34.05223)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Staëlle",
+
     "itemLabel": "Tatiana moocit",
     "locationQid": "Q12709",
+
     "wikidata": "Q4244555",
     "coord": "Point(2.75 42.5)",
+
     "coordinates": "Point(30.513611111 59.908611111)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Namyap",
+
     "itemLabel": "Franz.Roos.1955",
     "locationQid": "Q18126899",
+
     "wikidata": "Q11943",
     "coord": "Point(76.592226 8.892785)",
+
     "coordinates": "Point(8.656388888 47.413055611)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Marion",
+
     "itemLabel": "Namyap",
     "locationQid": "Q1289",
+
     "wikidata": "Q18126899",
     "coord": "Point(5.726388888 45.186944444)",
+
     "coordinates": "Point(76.592226 8.892785)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ninovolador",
+
     "itemLabel": "Pavsrinivasa",
     "locationQid": "Q2887",
+
     "wikidata": "Q1355",
     "coord": "Point(-70.666666666 -33.45)",
+
     "coordinates": "Point(77.5912997 12.9791198)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Prosiect Wici Mon",
+
     "itemLabel": "Leolucas1980gmail",
     "locationQid": "Q168159",
+
     "wikidata": "Q2844",
     "coord": "Point(-4.376728 53.293975)",
+
     "coordinates": "Point(-47.882777777 -15.793888888)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zhnka",
+
     "itemLabel": "Imad El Mouak",
     "locationQid": "Q1879573",
+
     "wikidata": "Q12709",
     "coord": "Point(13.164760826 49.603601071)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tatiana moocit",
+
     "itemLabel": "Staëlle",
     "locationQid": "Q4244555",
+
     "wikidata": "Q12709",
     "coord": "Point(30.513611111 59.908611111)",
+
     "coordinates": "Point(2.75 42.5)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Va Milushnikov",
+
     "itemLabel": "LuneMarine",
     "locationQid": "Q16150196",
+
     "wikidata": "Q214086",
     "coord": "Point(37.804166666 48.008888888)",
+
     "coordinates": "Point(6.15 46.2)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "WikiGaufrette00",
+
     "itemLabel": "Va Milushnikov",
     "locationQid": "Q7003",
+
     "wikidata": "Q16150196",
     "coord": "Point(5.041944444 47.323055555)",
+
     "coordinates": "Point(37.804166666 48.008888888)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nikita2018",
+
     "itemLabel": "Marion",
     "locationQid": "Q2158520",
+
     "wikidata": "Q1289",
     "coord": "Point(-72.8 19.783333333)",
+
     "coordinates": "Point(5.726388888 45.186944444)",
 
     "records": "4",
 
     "records": "4",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JEP Visiteur 7",
+
     "itemLabel": "Merlin",
     "locationQid": "Q6602",
+
     "wikidata": "Q192038",
     "coord": "Point(7.752222222 48.573333333)",
+
     "coordinates": "Point(-1.370277777 43.602777777)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Fleuriste du marché",
+
     "itemLabel": "Franclyna",
     "locationQid": "Q6643",
+
     "wikidata": "Q456",
     "coord": "Point(2.751388888 42.488055555)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hervé31",
+
     "itemLabel": "Nékoro Joséphine",
     "locationQid": "Q7880",
+
     "wikidata": "Q9737",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(166.366666666 -22.133333333)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kisukononeko",
+
     "itemLabel": "Jun Da",
     "locationQid": "Q31",
+
     "wikidata": "Q1867",
     "coord": "Point(4.668055555 50.641111111)",
+
     "coordinates": "Point(121.531944444 25.047777777)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "DavicoHM",
+
     "itemLabel": "Isabelle Fabriès",
     "locationQid": "Q45",
+
     "wikidata": "Q1369473",
     "coord": "Point(-9.183333333 38.7)",
+
     "coordinates": "Point(2.984444444 42.727777777)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "PolinaSol",
+
     "itemLabel": "Quentin Giraudon",
     "locationQid": "Q83247",
+
     "wikidata": "Q1369473",
     "coord": "Point(-8.416666666 41.533333333)",
+
     "coordinates": "Point(2.984444444 42.727777777)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Franclyna",
+
     "itemLabel": "JEP Visiteur 7",
     "locationQid": "Q456",
+
     "wikidata": "Q6602",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(7.752222222 48.573333333)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "MirkoRP",
+
     "itemLabel": "Fleuriste du marché",
     "locationQid": "Q39",
+
     "wikidata": "Q6643",
     "coord": "Point(8.231973 46.798562)",
+
     "coordinates": "Point(2.751388888 42.488055555)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Commander Keane",
+
     "itemLabel": "Hervé31",
     "locationQid": "Q408",
+
     "wikidata": "Q7880",
     "coord": "Point(137.0 -28.0)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jean-Brice64",
+
     "itemLabel": "PolinaSol",
     "locationQid": "Q132671",
+
     "wikidata": "Q83247",
     "coord": "Point(-0.37 43.300833333)",
+
     "coordinates": "Point(-8.416666666 41.533333333)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Dyco77",
+
     "itemLabel": "Kisukononeko",
     "locationQid": "Q142",
+
     "wikidata": "Q31",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(4.668055555 50.641111111)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Visiteuse Journée 2 - 24",
+
     "itemLabel": "DavicoHM",
     "locationQid": "Q21979",
+
     "wikidata": "Q45",
     "coord": "Point(7.027777777 48.996111111)",
+
     "coordinates": "Point(-9.183333333 38.7)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sangianense",
+
     "itemLabel": "Sangianense",
     "locationQid": "Q414",
+
     "wikidata": "Q414",
     "coord": "Point(-64.0 -34.0)",
+
     "coordinates": "Point(-64.0 -34.0)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "KhawaChenpo",
+
     "itemLabel": "KhawaChenpo",
     "locationQid": "Q956",
+
     "wikidata": "Q956",
     "coord": "Point(116.407526 39.90403)",
+
     "coordinates": "Point(116.407526 39.90403)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Muriloricci",
+
     "itemLabel": "Visiteuse Journée 2 - 24",
     "locationQid": "Q803",
+
     "wikidata": "Q21979",
     "coord": "Point(5.115555555 52.088888888)",
+
     "coordinates": "Point(7.027777777 48.996111111)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yihsiangyang",
+
     "itemLabel": "Dyco77",
     "locationQid": "Q1867",
+
     "wikidata": "Q142",
     "coord": "Point(121.531944444 25.047777777)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "GamissimoYT",
+
     "itemLabel": "Marie D Martel",
     "locationQid": "Q142",
+
     "wikidata": "Q340",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(-73.561666666 45.508888888)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Isabelle Fabriès",
+
     "itemLabel": "Yihsiangyang",
     "locationQid": "Q1369473",
+
     "wikidata": "Q1867",
     "coord": "Point(2.984444444 42.727777777)",
+
     "coordinates": "Point(121.531944444 25.047777777)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Quentin Giraudon",
+
     "itemLabel": "Jean-Brice64",
     "locationQid": "Q1369473",
+
     "wikidata": "Q132671",
     "coord": "Point(2.984444444 42.727777777)",
+
     "coordinates": "Point(-0.37 43.300833333)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nékoro Joséphine",
+
     "itemLabel": "Commander Keane",
     "locationQid": "Q9737",
+
     "wikidata": "Q408",
     "coord": "Point(166.366666666 -22.133333333)",
+
     "coordinates": "Point(137.0 -28.0)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Merlin",
+
     "itemLabel": "MirkoRP",
     "locationQid": "Q192038",
+
     "wikidata": "Q39",
     "coord": "Point(-1.370277777 43.602777777)",
+
     "coordinates": "Point(8.231973 46.798562)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sezgin İbiş",
+
     "itemLabel": "Muriloricci",
     "locationQid": "Q35997",
+
     "wikidata": "Q803",
     "coord": "Point(27.13838 38.41273)",
+
     "coordinates": "Point(5.115555555 52.088888888)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Andrey Petrov",
+
     "itemLabel": "GamissimoYT",
     "locationQid": "Q4244555",
+
     "wikidata": "Q142",
     "coord": "Point(30.513611111 59.908611111)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jun Da",
+
     "itemLabel": "Sezgin İbiş",
     "locationQid": "Q1867",
+
     "wikidata": "Q35997",
     "coord": "Point(121.531944444 25.047777777)",
+
     "coordinates": "Point(27.13838 38.41273)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Marie D Martel",
+
     "itemLabel": "Andrey Petrov",
     "locationQid": "Q340",
+
     "wikidata": "Q4244555",
     "coord": "Point(-73.561666666 45.508888888)",
+
     "coordinates": "Point(30.513611111 59.908611111)",
 
     "records": "3",
 
     "records": "3",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Niklitov",
+
     "itemLabel": "Rdrg109",
     "locationQid": "Q649",
+
     "wikidata": "Q3321959",
     "coord": "Point(37.617777777 55.755833333)",
+
     "coordinates": "Point(-77.0625 -12.070277777)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Waltermas2021",
+
     "itemLabel": "AFRO-Haïti",
     "locationQid": "Q739",
+
     "wikidata": "Q790",
     "coord": "Point(-74.0 4.0)",
+
     "coordinates": "Point(-72.8 19.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Omshivaprakash",
+
     "itemLabel": "Lmichan",
     "locationQid": "Q1355",
+
     "wikidata": "Q1489",
     "coord": "Point(77.5912997 12.9791198)",
+
     "coordinates": "Point(-99.145555555 19.419444444)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "CapitainAfrika",
+
     "itemLabel": "Ergonomiko",
     "locationQid": "Q3838",
+
     "wikidata": "Q5384",
     "coord": "Point(15.313888888 -4.331666666)",
+
     "coordinates": "Point(49.65 58.6)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ergonomiko",
+
     "itemLabel": "PeterTheOne",
     "locationQid": "Q5384",
+
     "wikidata": "Q13298",
     "coord": "Point(49.65 58.6)",
+
     "coordinates": "Point(15.438611111 47.070833333)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "D3XT3RY0NuT",
+
     "itemLabel": "Niklitov",
     "locationQid": "Q218",
+
     "wikidata": "Q649",
     "coord": "Point(25.0 46.0)",
+
     "coordinates": "Point(37.617777777 55.755833333)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "RiLiu",
+
     "itemLabel": "Waltermas2021",
     "locationQid": "Q14314",
+
     "wikidata": "Q739",
     "coord": "Point(-8.533333333 42.883333333)",
+
     "coordinates": "Point(-74.0 4.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bardabub",
+
     "itemLabel": "Omshivaprakash",
     "locationQid": "Q142",
+
     "wikidata": "Q1355",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(77.5912997 12.9791198)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mespevic",
+
     "itemLabel": "CapitainAfrika",
     "locationQid": "Q962",
+
     "wikidata": "Q3838",
     "coord": "Point(2.183333333 8.833333333)",
+
     "coordinates": "Point(15.313888888 -4.331666666)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Theogui",
+
     "itemLabel": "RiLiu",
     "locationQid": "Q142",
+
     "wikidata": "Q14314",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(-8.533333333 42.883333333)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Kateregga1",
+
     "itemLabel": "D3XT3RY0NuT",
     "locationQid": "Q3894",
+
     "wikidata": "Q218",
     "coord": "Point(32.581111111 0.313611111)",
+
     "coordinates": "Point(25.0 46.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Люпинила",
+
     "itemLabel": "Heliophilous",
     "locationQid": "Q159",
+
     "wikidata": "Q1348",
     "coord": "Point(94.25 66.416666666)",
+
     "coordinates": "Point(88.3638815 22.5726723)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Heliophilous",
+
     "itemLabel": "Bakerkobe",
     "locationQid": "Q1348",
+
     "wikidata": "Q16666",
     "coord": "Point(88.3638815 22.5726723)",
+
     "coordinates": "Point(118.766666666 32.05)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Meixome",
+
     "itemLabel": "Люпинила",
     "locationQid": "Q12411",
+
     "wikidata": "Q159",
     "coord": "Point(-8.6475 42.433611111)",
+
     "coordinates": "Point(94.25 66.416666666)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Darmo117",
+
     "itemLabel": "Kateregga1",
     "locationQid": "Q7880",
+
     "wikidata": "Q3894",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(32.581111111 0.313611111)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Antoine l.",
+
     "itemLabel": "Theogui",
     "locationQid": "Q42716",
+
     "wikidata": "Q142",
     "coord": "Point(4.389722222 45.433888888)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Justinetto",
+
     "itemLabel": "Gaillon27",
     "locationQid": "Q184154",
+
     "wikidata": "Q20927",
     "coord": "Point(-0.77 48.072777777)",
+
     "coordinates": "Point(128.6 35.866666666)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "0x010D",
+
     "itemLabel": "JackPotte",
     "locationQid": "Q142",
+
     "wikidata": "Q90",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Zoubab",
+
     "itemLabel": "Justinetto",
     "locationQid": "Q142",
+
     "wikidata": "Q184154",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(-0.77 48.072777777)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jayprakash12345",
+
     "itemLabel": "Darmo117",
     "locationQid": "Q668",
+
     "wikidata": "Q7880",
     "coord": "Point(83.0 22.8)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rdrg109",
+
     "itemLabel": "Antoine l.",
     "locationQid": "Q3321959",
+
     "wikidata": "Q42716",
     "coord": "Point(-77.0625 -12.070277777)",
+
     "coordinates": "Point(4.389722222 45.433888888)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bakerkobe",
+
     "itemLabel": "Mespevic",
     "locationQid": "Q16666",
+
     "wikidata": "Q962",
     "coord": "Point(118.766666666 32.05)",
+
     "coordinates": "Point(2.183333333 8.833333333)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Md Anan Islam",
+
     "itemLabel": "Meixome",
     "locationQid": "Q2049820",
+
     "wikidata": "Q12411",
     "coord": "Point(88.15 25.0)",
+
     "coordinates": "Point(-8.6475 42.433611111)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ᱵᱳᱫᱤ ᱵᱟᱥᱠᱤ",
+
     "itemLabel": "Zoubab",
     "locationQid": "Q7586440",
+
     "wikidata": "Q142",
     "coord": "Point(87.66 23.66)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sascha",
+
     "itemLabel": "Bardabub",
     "locationQid": "Q688539",
+
     "wikidata": "Q142",
     "coord": "Point(8.82228 47.22557)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "AFRO-Haïti",
+
     "itemLabel": "0x010D",
     "locationQid": "Q790",
+
     "wikidata": "Q142",
     "coord": "Point(-72.8 19.0)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Lmichan",
+
     "itemLabel": "Sascha",
     "locationQid": "Q1489",
+
     "wikidata": "Q688539",
     "coord": "Point(-99.145555555 19.419444444)",
+
     "coordinates": "Point(8.82228 47.22557)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "PeterTheOne",
+
     "itemLabel": "Md Anan Islam",
     "locationQid": "Q13298",
+
     "wikidata": "Q2049820",
     "coord": "Point(15.438611111 47.070833333)",
+
     "coordinates": "Point(88.15 25.0)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "JackPotte",
+
     "itemLabel": "ᱵᱳᱫᱤ ᱵᱟᱥᱠᱤ",
     "locationQid": "Q90",
+
     "wikidata": "Q7586440",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(87.66 23.66)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Gaillon27",
+
     "itemLabel": "Jayprakash12345",
     "locationQid": "Q20927",
+
     "wikidata": "Q668",
     "coord": "Point(128.6 35.866666666)",
+
     "coordinates": "Point(83.0 22.8)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Orang Bekasi",
+
     "itemLabel": "Orang Bekasi",
     "locationQid": "Q10392",
+
     "wikidata": "Q10392",
     "coord": "Point(107.0 -6.233333333)",
+
     "coordinates": "Point(107.0 -6.233333333)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Chinmayee Mishra",
+
     "itemLabel": "Chinmayee Mishra",
     "locationQid": "Q22048",
+
     "wikidata": "Q22048",
     "coord": "Point(85.5 20.15)",
+
     "coordinates": "Point(85.5 20.15)",
 
     "records": "2",
 
     "records": "2",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bluerasberry",
+
     "itemLabel": "Balyozxane",
     "locationQid": "Q5083",
+
     "wikidata": "Q693929",
     "coord": "Point(-122.33207 47.60621)",
+
     "coordinates": "Point(40.586111111 37.193888888)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "SlimaneAmiri",
+
     "itemLabel": "Willylexomil",
     "locationQid": "Q46178",
+
     "wikidata": "Q288",
     "coord": "Point(5.0 36.6)",
+
     "coordinates": "Point(0.688333333 47.392777777)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Veeven",
+
     "itemLabel": "Valerio Bozzolan",
     "locationQid": "Q668",
+
     "wikidata": "Q495",
     "coord": "Point(83.0 22.8)",
+
     "coordinates": "Point(7.7 45.066666666)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rtnf",
+
     "itemLabel": "bcl",
     "locationQid": "Q10392",
+
     "wikidata": "Q928",
     "coord": "Point(107.0 -6.233333333)",
+
     "coordinates": "Point(123.0 12.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Willylexomil",
+
     "itemLabel": "Hérisson grognon",
     "locationQid": "Q288",
+
     "wikidata": "Q6441",
     "coord": "Point(0.688333333 47.392777777)",
+
     "coordinates": "Point(3.877230555 43.610919444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Valerio Bozzolan",
+
     "itemLabel": "Nicroc",
     "locationQid": "Q495",
+
     "wikidata": "Q7880",
     "coord": "Point(7.7 45.066666666)",
+
     "coordinates": "Point(1.443888888 43.604444444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "bcl",
+
     "itemLabel": "Ayoub.korichi",
     "locationQid": "Q928",
+
     "wikidata": "Q402825",
     "coord": "Point(123.0 12.0)",
+
     "coordinates": "Point(4.541944444 35.705833333)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "James Barnett",
+
     "itemLabel": "Cloud atlas",
     "locationQid": "Q21",
+
     "wikidata": "Q484678",
     "coord": "Point(-1.0 53.0)",
+
     "coordinates": "Point(-122.268055555 37.870277777)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jeuwre",
+
     "itemLabel": "Rency Inson Michel",
     "locationQid": "Q64",
+
     "wikidata": "Q997821",
     "coord": "Point(13.383333333 52.516666666)",
+
     "coordinates": "Point(-72.3 18.55)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Seglinglin",
+
     "itemLabel": "Vami",
     "locationQid": "Q90",
+
     "wikidata": "Q16150196",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(37.804166666 48.008888888)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ThelmOSO",
+
     "itemLabel": "Romainbehar",
     "locationQid": "Q54171",
+
     "wikidata": "Q456",
     "coord": "Point(17.9 50.633333333)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Joyeuxbernard587412",
+
     "itemLabel": "Aftabuzzaman",
     "locationQid": "Q142",
+
     "wikidata": "Q902",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(89.866667 24.016667)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Praveengarlapati",
+
     "itemLabel": "CValcarcel",
     "locationQid": "Q1355",
+
     "wikidata": "Q3396150",
     "coord": "Point(77.5912997 12.9791198)",
+
     "coordinates": "Point(-8.61333333 42.43833333)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Axel584",
+
     "itemLabel": "Bluerasberry",
     "locationQid": "Q6548",
+
     "wikidata": "Q5083",
     "coord": "Point(1.904166666 47.902222222)",
+
     "coordinates": "Point(-122.33207 47.60621)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Roseofsharon7",
+
     "itemLabel": "SlimaneAmiri",
     "locationQid": "Q90",
+
     "wikidata": "Q46178",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(5.0 36.6)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Maroxib",
+
     "itemLabel": "Rtnf",
     "locationQid": "Q90",
+
     "wikidata": "Q10392",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(107.0 -6.233333333)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Victorhgsilva",
+
     "itemLabel": "Louloupalatine",
     "locationQid": "Q155",
+
     "wikidata": "Q39",
     "coord": "Point(-53.0 -14.0)",
+
     "coordinates": "Point(8.231973 46.798562)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Билярфорум",
+
     "itemLabel": "Arha06",
     "locationQid": "Q159",
+
     "wikidata": "Q656",
     "coord": "Point(94.25 66.416666666)",
+
     "coordinates": "Point(30.316666666 59.95)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ashton langue",
+
     "itemLabel": "Bakuli63",
     "locationQid": "Q172",
+
     "wikidata": "Q1538",
     "coord": "Point(-79.386666666 43.670277777)",
+
     "coordinates": "Point(73.855287 18.519574)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Arha06",
+
     "itemLabel": "Roseofsharon7",
     "locationQid": "Q656",
+
     "wikidata": "Q90",
     "coord": "Point(30.316666666 59.95)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Bakuli63",
+
     "itemLabel": "Maroxib",
     "locationQid": "Q1538",
+
     "wikidata": "Q90",
     "coord": "Point(73.855287 18.519574)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Louloupalatine",
+
     "itemLabel": "Victorhgsilva",
     "locationQid": "Q39",
+
     "wikidata": "Q155",
     "coord": "Point(8.231973 46.798562)",
+
     "coordinates": "Point(-53.0 -14.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Max93600",
+
     "itemLabel": "Билярфорум",
     "locationQid": "Q205551",
+
     "wikidata": "Q159",
     "coord": "Point(-0.645 44.8425)",
+
     "coordinates": "Point(94.25 66.416666666)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Tahir Mahadjir",
+
     "itemLabel": "Ashton langue",
     "locationQid": "Q657",
+
     "wikidata": "Q172",
     "coord": "Point(19.4 15.466667)",
+
     "coordinates": "Point(-79.386666666 43.670277777)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Markden24",
+
     "itemLabel": "Praveengarlapati",
     "locationQid": "Q928",
+
     "wikidata": "Q1355",
     "coord": "Point(123.0 12.0)",
+
     "coordinates": "Point(77.5912997 12.9791198)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Dtchebeba Frankline",
+
     "itemLabel": "Axel584",
     "locationQid": "Q289267",
+
     "wikidata": "Q6548",
     "coord": "Point(10.05 5.45)",
+
     "coordinates": "Point(1.904166666 47.902222222)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Choucroute 11",
+
     "itemLabel": "Joyeuxbernard587412",
     "locationQid": "Q2103212",
+
     "wikidata": "Q142",
     "coord": "Point(5.5378 50.2081)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jaskaranq",
+
     "itemLabel": "Veeven",
     "locationQid": "Q2353293",
+
     "wikidata": "Q668",
     "coord": "Point(75.5 30.38)",
+
     "coordinates": "Point(83.0 22.8)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Jaskaranq",
+
     "itemLabel": "Sarah Krichen WMFr",
     "locationQid": "Q2353293",
+
     "wikidata": "Q90",
     "coord": "Point(75.55 30.3833)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hildepont",
+
     "itemLabel": "Dtchebeba Frankline",
     "locationQid": "Q239",
+
     "wikidata": "Q289267",
     "coord": "Point(4.351666666 50.846666666)",
+
     "coordinates": "Point(10.05 5.45)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Mbdji01",
+
     "itemLabel": "Choucroute 11",
     "locationQid": "Q142",
+
     "wikidata": "Q2103212",
     "coord": "Point(2.0 47.0)",
+
     "coordinates": "Point(5.5378 50.2081)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ahoraes",
+
     "itemLabel": "Jaskaranq",
     "locationQid": "Q739",
+
     "wikidata": "Q2353293",
     "coord": "Point(-74.0 4.0)",
+
     "coordinates": "Point(75.5 30.38)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Eihel-test",
+
     "itemLabel": "Jaskaranq",
     "locationQid": "Q807",
+
     "wikidata": "Q2353293",
     "coord": "Point(6.633333333 46.533333333)",
+
     "coordinates": "Point(75.55 30.3833)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Noé",
+
     "itemLabel": "Tahir Mahadjir",
     "locationQid": "Q456",
+
     "wikidata": "Q657",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(19.4 15.466667)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "BOT-Twm Crys",
+
     "itemLabel": "Markden24",
     "locationQid": "Q25",
+
     "wikidata": "Q928",
     "coord": "Point(-3.633333333 52.35)",
+
     "coordinates": "Point(123.0 12.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vincent Simar",
+
     "itemLabel": "James Barnett",
     "locationQid": "Q31",
+
     "wikidata": "Q21",
     "coord": "Point(4.668055555 50.641111111)",
+
     "coordinates": "Point(-1.0 53.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "nclm",
+
     "itemLabel": "Jeuwre",
     "locationQid": "Q35",
+
     "wikidata": "Q64",
     "coord": "Point(10.0 56.0)",
+
     "coordinates": "Point(13.383333333 52.516666666)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Vami",
+
     "itemLabel": "Seglinglin",
     "locationQid": "Q16150196",
+
     "wikidata": "Q90",
     "coord": "Point(37.804166666 48.008888888)",
+
     "coordinates": "Point(2.351388888 48.856944444)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "CValcarcel",
+
     "itemLabel": "ThelmOSO",
     "locationQid": "Q3396150",
+
     "wikidata": "Q54171",
     "coord": "Point(-8.61333333 42.43833333)",
+
     "coordinates": "Point(17.9 50.633333333)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Hérisson grognon",
+
     "itemLabel": "Max93600",
     "locationQid": "Q6441",
+
     "wikidata": "Q205551",
     "coord": "Point(3.877230555 43.610919444)",
+
     "coordinates": "Point(-0.645 44.8425)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Nicroc",
+
     "itemLabel": "Mbdji01",
     "locationQid": "Q7880",
+
     "wikidata": "Q142",
     "coord": "Point(1.443888888 43.604444444)",
+
     "coordinates": "Point(2.0 47.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Balyozxane",
+
     "itemLabel": "Hildepont",
     "locationQid": "Q693929",
+
     "wikidata": "Q239",
     "coord": "Point(40.586111111 37.193888888)",
+
     "coordinates": "Point(4.351666666 50.846666666)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "ᱥᱟᱹᱜᱩᱱ ᱗",
+
     "itemLabel": "ᱥᱟᱹᱜᱩᱱ ᱗",
     "locationQid": "Q7586440",
+
     "wikidata": "Q7586440",
     "coord": "Point(87.66 23.66)",
+
     "coordinates": "Point(87.66 23.66)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Romainbehar",
+
     "itemLabel": "Noé",
     "locationQid": "Q456",
+
     "wikidata": "Q456",
     "coord": "Point(4.841388888 45.758888888)",
+
     "coordinates": "Point(4.841388888 45.758888888)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Aftabuzzaman",
+
     "itemLabel": "Ahoraes",
     "locationQid": "Q902",
+
     "wikidata": "Q739",
     "coord": "Point(89.866667 24.016667)",
+
     "coordinates": "Point(-74.0 4.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "VisbyStar",
+
     "itemLabel": "Eihel-test",
     "locationQid": "Q54757",
+
     "wikidata": "Q807",
     "coord": "Point(18.307108945 57.628997457)",
+
     "coordinates": "Point(6.633333333 46.533333333)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Ayoub.korichi",
+
     "itemLabel": "Yves Madika",
     "locationQid": "Q402825",
+
     "wikidata": "Q187593",
     "coord": "Point(4.541944444 35.705833333)",
+
     "coordinates": "Point(27.458055555 -11.669722222)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Cloud atlas",
+
     "itemLabel": "BOT-Twm Crys",
     "locationQid": "Q484678",
+
     "wikidata": "Q25",
     "coord": "Point(-122.268055555 37.870277777)",
+
     "coordinates": "Point(-3.633333333 52.35)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Rency Inson Michel",
+
     "itemLabel": "Vincent Simar",
     "locationQid": "Q997821",
+
     "wikidata": "Q31",
     "coord": "Point(-72.3 18.55)",
+
     "coordinates": "Point(4.668055555 50.641111111)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Sarah Krichen WMFr",
+
     "itemLabel": "nclm",
     "locationQid": "Q90",
+
     "wikidata": "Q35",
     "coord": "Point(2.351388888 48.856944444)",
+
     "coordinates": "Point(10.0 56.0)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   },
 
   },
 
   {
 
   {
     "speakerLabel": "Yves Madika",
+
     "itemLabel": "VisbyStar",
     "locationQid": "Q187593",
+
     "wikidata": "Q54757",
     "coord": "Point(27.458055555 -11.669722222)",
+
     "coordinates": "Point(18.307108945 57.628997457)",
 
     "records": "1",
 
     "records": "1",
 
     "layer": "<10"
 
     "layer": "<10"
 
   }
 
   }
 
]
 
]

Revision as of 20:28, 22 January 2022

/* **************
#defaultView:Table
# Same can apply to languages :
# Q3→Q4  : items speaker and language
# P14→P12 : items WD location and WD language
# P5→P4 : properties speaker and languages
# P625→P1098 : properties location and population

PREFIX ll: <https://lingualibre.org/entity/>
PREFIX llt: <https://lingualibre.org/prop/direct/>

SELECT DISTINCT ?itemLabel ?wikidata (?info AS ?coordinates) ?records (SAMPLE(?tag) AS ?layer)
# On Lingualibre, get item's info
WITH {
  SELECT *
  WHERE {
    SERVICE <https://lingualibre.org/sparql> {    # Commented on LLQS only
      SELECT DISTINCT ?itemLabel ?wikidata (COUNT(?record) AS ?records) 
      {
        ?item llt:P2 ll:Q3 ;
                 rdfs:label ?itemLabel;
                 llt:P14 ?wikidata .
        ?record llt:P5 ?item .
        FILTER (LANG(?itemLabel)='en')
        FILTER (regex(?wikidata, '^Q'))
      } GROUP BY ?itemLabel ?wikidata
    }           # Commented on LLQS only
  }
} AS %infoWikidataId
# On Wikidata, get the target info
WHERE {
  INCLUDE %infoWikidataId
  BIND (URI(CONCAT("http://www.wikidata.org/entity/", ?wikidata)) AS ?infoURL)
  SERVICE <https://query.wikidata.org/sparql> { 
    SELECT * { 
      ?infoURL wdt:P625 ?info .
    } 
  }
   BIND(
    IF(?records < 10, "<10",
    IF(?records < 1000, "10-1,000",
    IF(?records < 5000, "1k-5k",
    IF(?records < 25000, "5k-25k",
    IF(?records < 50000, "25k-50k",
    ">50k")))))
    AS ?tag) .
} 
GROUP BY ?itemLabel ?wikidata ?info ?records
ORDER BY DESC (?records)
************** */
[
  {
    "itemLabel": "Titodutta",
    "wikidata": "Q1348",
    "coordinates": "Point(88.3638815 22.5726723)",
    "records": "55355",
    "layer": ">50k"
  },
  {
    "itemLabel": "Olaf",
    "wikidata": "Q270",
    "coordinates": "Point(21.011111111 52.23)",
    "records": "54331",
    "layer": ">50k"
  },
  {
    "itemLabel": "Psubhashish",
    "wikidata": "Q22048",
    "coordinates": "Point(85.5 20.15)",
    "records": "50859",
    "layer": ">50k"
  },
  {
    "itemLabel": "WikiLucas00",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "50575",
    "layer": ">50k"
  },
  {
    "itemLabel": "Lepticed7",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "44461",
    "layer": "25k-50k"
  },
  {
    "itemLabel": "Lyokoï",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "34209",
    "layer": "25k-50k"
  },
  {
    "itemLabel": "LoquaxFR",
    "wikidata": "Q3105",
    "coordinates": "Point(6.416666666 48.166666666)",
    "records": "31261",
    "layer": "25k-50k"
  },
  {
    "itemLabel": "Davidgrosclaude",
    "wikidata": "Q213763",
    "coordinates": "Point(-0.366667 43.3)",
    "records": "24137",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Tohaomg",
    "wikidata": "Q1899",
    "coordinates": "Point(30.523611111 50.45)",
    "records": "18002",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Poslovitch",
    "wikidata": "Q821240",
    "coordinates": "Point(6.839166666 47.963055555)",
    "records": "16987",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "KlaudiuMihaila",
    "wikidata": "Q46852",
    "coordinates": "Point(27.588888888 47.162222222)",
    "records": "15480",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "DenisdeShawi",
    "wikidata": "Q141980",
    "coordinates": "Point(-72.75 46.5667)",
    "records": "13076",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Poemat",
    "wikidata": "Q270",
    "coordinates": "Point(21.011111111 52.23)",
    "records": "12900",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Sebastian Wallroth",
    "wikidata": "Q64",
    "coordinates": "Point(13.383333333 52.516666666)",
    "records": "7959",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Guilhelma",
    "wikidata": "Q624805",
    "coordinates": "Point(2.715277777 43.325)",
    "records": "7525",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Moonhouse",
    "wikidata": "Q34",
    "coordinates": "Point(15.0 61.0)",
    "records": "6884",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Luilui6666",
    "wikidata": "Q8646",
    "coordinates": "Point(114.158611111 22.278333333)",
    "records": "6198",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Pamputt",
    "wikidata": "Q837748",
    "coordinates": "Point(2.307777777 48.609444444)",
    "records": "5502",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Mecanautes",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "5154",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "Robin van der Vliet",
    "wikidata": "Q15981302",
    "coordinates": "Point(5.72111 51.8067)",
    "records": "5125",
    "layer": "5k-25k"
  },
  {
    "itemLabel": "KaMan",
    "wikidata": "Q36",
    "coordinates": "Point(19.0 52.0)",
    "records": "4899",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "VictorDtmtc",
    "wikidata": "Q40898",
    "coordinates": "Point(6.183611111 48.692777777)",
    "records": "4651",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Marreromarco",
    "wikidata": "Q717",
    "coordinates": "Point(-67.0 8.0)",
    "records": "4328",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "DSwissK",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "4260",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "SangeetaRH",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "3998",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Zinou2go",
    "wikidata": "Q338844",
    "coordinates": "Point(6.166666666 35.55)",
    "records": "3812",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Gaurav Jhammat",
    "wikidata": "Q33377",
    "coordinates": "Point(75.579166666 31.325555555)",
    "records": "3801",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Eihel",
    "wikidata": "Q807",
    "coordinates": "Point(6.633333333 46.533333333)",
    "records": "3605",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Benoît Prieur",
    "wikidata": "Q11981",
    "coordinates": "Point(4.975277777 45.830277777)",
    "records": "3472",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Manjusha Gore",
    "wikidata": "Q5289983",
    "coordinates": "Point(73.0869 19.218218)",
    "records": "3109",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Tatiana Kerbush",
    "wikidata": "Q656",
    "coordinates": "Point(30.316666666 59.95)",
    "records": "3099",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Yahya",
    "wikidata": "Q902",
    "coordinates": "Point(89.866667 24.016667)",
    "records": "3087",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Cinemantique",
    "wikidata": "Q159",
    "coordinates": "Point(94.25 66.416666666)",
    "records": "2894",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Jules78120",
    "wikidata": "Q12820",
    "coordinates": "Point(1.916666666 48.833333333)",
    "records": "2743",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Natschoba",
    "wikidata": "Q183",
    "coordinates": "Point(10.0 51.0)",
    "records": "2733",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "LangPao",
    "wikidata": "Q38",
    "coordinates": "Point(12.5 42.5)",
    "records": "2699",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Nelson Ricardo 2500",
    "wikidata": "Q30",
    "coordinates": "Point(-98.5795 39.828175)",
    "records": "2693",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "0x010C",
    "wikidata": "Q147987",
    "coordinates": "Point(7.473611111 48.102222222)",
    "records": "2684",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Xabier Cañas",
    "wikidata": "Q10313",
    "coordinates": "Point(-1.98 43.32)",
    "records": "2540",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Oesjaar",
    "wikidata": "Q34647",
    "coordinates": "Point(28.041638888 -26.204361111)",
    "records": "2517",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Arlo Barnes",
    "wikidata": "Q1801743",
    "coordinates": "Point(-105.881 35.4861)",
    "records": "2448",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Back ache",
    "wikidata": "Q84",
    "coordinates": "Point(-0.1275 51.507222222)",
    "records": "2295",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Millars",
    "wikidata": "Q12292",
    "coordinates": "Point(-0.101388888 39.937777777)",
    "records": "2281",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Santamarcanda",
    "wikidata": "Q36433",
    "coordinates": "Point(-8.610777777 41.149472222)",
    "records": "2220",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Bjankuloski06",
    "wikidata": "Q384",
    "coordinates": "Point(21.433333333 41.983333333)",
    "records": "1947",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Nattes à chat",
    "wikidata": "Q71",
    "coordinates": "Point(6.15 46.2)",
    "records": "1794",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Exilexi",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1792",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "GrandCelinien",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1780",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Spotless Mind1988",
    "wikidata": "Q338844",
    "coordinates": "Point(6.166666666 35.55)",
    "records": "1651",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Ltrlg",
    "wikidata": "Q1384064",
    "coordinates": "Point(-0.495 47.4675)",
    "records": "1648",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Neelima64",
    "wikidata": "Q1191",
    "coordinates": "Point(76.42 19.56)",
    "records": "1637",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Simplificationalizer",
    "wikidata": "Q1408",
    "coordinates": "Point(-74.5 40.0)",
    "records": "1632",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Jest Spoczko",
    "wikidata": "Q857331",
    "coordinates": "Point(16.623 50.69075)",
    "records": "1632",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Rominf",
    "wikidata": "Q1757",
    "coordinates": "Point(24.93417 60.17556)",
    "records": "1617",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "T. Le Berre",
    "wikidata": "Q12545",
    "coordinates": "Point(3.877230555 43.610919444)",
    "records": "1608",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "AdrianAbdulBaha",
    "wikidata": "Q1953",
    "coordinates": "Point(44.514444444 40.181388888)",
    "records": "1579",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Anonymât",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "1434",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Touam",
    "wikidata": "Q42716",
    "coordinates": "Point(4.389722222 45.433888888)",
    "records": "1362",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Kunokuno",
    "wikidata": "Q928",
    "coordinates": "Point(123.0 12.0)",
    "records": "1355",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Filosoful",
    "wikidata": "Q168057",
    "coordinates": "Point(23.816666666 44.333333333)",
    "records": "1348",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Unjoanqualsevol",
    "wikidata": "Q16697",
    "coordinates": "Point(1.829166666 41.726388888)",
    "records": "1345",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Arthur Crbz",
    "wikidata": "Q18678265",
    "coordinates": "Point(2.343568369 43.648785141)",
    "records": "1235",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Jessica Nguyen",
    "wikidata": "Q1854",
    "coordinates": "Point(106.633333333 10.816666666)",
    "records": "1231",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Reda Kerbouche",
    "wikidata": "Q338844",
    "coordinates": "Point(6.166666666 35.55)",
    "records": "1131",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Citoyenovice",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "1131",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Totodu74",
    "wikidata": "Q829407",
    "coordinates": "Point(6.2075 46.185)",
    "records": "1107",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Aparna Gondhalekar",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "1104",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Frank C. Müller",
    "wikidata": "Q1794",
    "coordinates": "Point(8.679722222 50.113611111)",
    "records": "1050",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "X-Javier",
    "wikidata": "Q274249",
    "coordinates": "Point(2.276388888 48.730555555)",
    "records": "1037",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Khalil.rantissi",
    "wikidata": "Q1218",
    "coordinates": "Point(35.216666666 31.783333333)",
    "records": "1028",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Penegal",
    "wikidata": "Q3105",
    "coordinates": "Point(6.416666666 48.166666666)",
    "records": "1026",
    "layer": "1k-5k"
  },
  {
    "itemLabel": "Zardabi Bakuvi",
    "wikidata": "Q9248",
    "coordinates": "Point(49.835183333 40.366655555)",
    "records": "994",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "नंदिनी रानडे",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "991",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jagwar",
    "wikidata": "Q1019",
    "coordinates": "Point(47.0 -20.0)",
    "records": "932",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Madehub",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "895",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Le Commissaire",
    "wikidata": "Q1142",
    "coordinates": "Point(7.5 48.5)",
    "records": "881",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Avatea",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "859",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Xenophôn",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "851",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "XANA000",
    "wikidata": "Q386661",
    "coordinates": "Point(139.491111111 35.338833333)",
    "records": "809",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Afsham23",
    "wikidata": "Q84",
    "coordinates": "Point(-0.1275 51.507222222)",
    "records": "799",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Akopoly",
    "wikidata": "Q312209",
    "coordinates": "Point(9.233333333 4.166666666)",
    "records": "775",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ives",
    "wikidata": "Q62587",
    "coordinates": "Point(2.847222222 43.228611111)",
    "records": "744",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jason.nlw",
    "wikidata": "Q213154",
    "coordinates": "Point(-4.066666666 52.416666666)",
    "records": "742",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "विनया लुकतुके",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "725",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Key Mîrza",
    "wikidata": "Q83061",
    "coordinates": "Point(43.416666666 38.501944444)",
    "records": "704",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ThonyVezbe",
    "wikidata": "Q327",
    "coordinates": "Point(-3.0 48.0)",
    "records": "692",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Taousert",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "691",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Webfil",
    "wikidata": "Q141652",
    "coordinates": "Point(-71.033333333 46.45)",
    "records": "671",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Fabricio Cardenas",
    "wikidata": "Q6643",
    "coordinates": "Point(2.751388888 42.488055555)",
    "records": "648",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Fhala.K",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "643",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Opsylac",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "612",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jauvert Laura",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "570",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ThineCupOverfloweth",
    "wikidata": "Q36",
    "coordinates": "Point(19.0 52.0)",
    "records": "564",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Igboanude",
    "wikidata": "Q3817714",
    "coordinates": "Point(7.5 6.5)",
    "records": "563",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ériugena",
    "wikidata": "Q22890",
    "coordinates": "Point(-8.0 53.333333333)",
    "records": "550",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ElsaBornFree",
    "wikidata": "Q1639355",
    "coordinates": "Point(-1.9474769 43.2815684)",
    "records": "550",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Psychoslave",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "520",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Eric.LEWIN",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "520",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Persepha",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "482",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Lucas Werkmeister",
    "wikidata": "Q64",
    "coordinates": "Point(13.383333333 52.516666666)",
    "records": "472",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Palé Kréyol",
    "wikidata": "Q907721",
    "coordinates": "Point(3.129444444 48.949166666)",
    "records": "451",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Hélène",
    "wikidata": "Q38380",
    "coordinates": "Point(-0.555555555 47.472777777)",
    "records": "438",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Pom445",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "436",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Michael Schönitzer",
    "wikidata": "Q1726",
    "coordinates": "Point(11.575 48.1375)",
    "records": "434",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rodelar",
    "wikidata": "Q29",
    "coordinates": "Point(-3.5 40.2)",
    "records": "433",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Missatikamekw",
    "wikidata": "Q3285285",
    "coordinates": "Point(-74.391666666 47.2225)",
    "records": "432",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ionenlaser",
    "wikidata": "Q1726",
    "coordinates": "Point(11.575 48.1375)",
    "records": "423",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Anon1314",
    "wikidata": "Q258",
    "coordinates": "Point(24.0 -29.0)",
    "records": "419",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Fredericknoronha",
    "wikidata": "Q1171",
    "coordinates": "Point(74.043333 15.401944)",
    "records": "414",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "LuneMarine",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "401",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Buffer",
    "wikidata": "Q30",
    "coordinates": "Point(-98.5795 39.828175)",
    "records": "400",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Gzhegozh",
    "wikidata": "Q1899",
    "coordinates": "Point(30.523611111 50.45)",
    "records": "381",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Gzhegozh",
    "wikidata": "Q2966",
    "coordinates": "Point(8.71 49.412222222)",
    "records": "381",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vininn126",
    "wikidata": "Q270",
    "coordinates": "Point(21.011111111 52.23)",
    "records": "380",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ajshul",
    "wikidata": "Q16",
    "coordinates": "Point(-109.0 56.0)",
    "records": "380",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "LightD31",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "377",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "NMaia",
    "wikidata": "Q155",
    "coordinates": "Point(-53.0 -14.0)",
    "records": "375",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "O2",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "374",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Adélaïde Calais WMFr",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "369",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "AryamanA",
    "wikidata": "Q61",
    "coordinates": "Point(-77.036666666 38.895)",
    "records": "365",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Golmore",
    "wikidata": "Q13917",
    "coordinates": "Point(2.3176 48.8522)",
    "records": "364",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Anagha62",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "363",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "{{Creator:Subhashish Panigrahi}}",
    "wikidata": "Q22048",
    "coordinates": "Point(85.5 20.15)",
    "records": "352",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Zakaria Mimouni",
    "wikidata": "Q612",
    "coordinates": "Point(55.309444444 25.269722222)",
    "records": "347",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Assassas77",
    "wikidata": "Q13917",
    "coordinates": "Point(2.3176 48.8522)",
    "records": "346",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vaulque",
    "wikidata": "Q342",
    "coordinates": "Point(-4.097777777 47.995833333)",
    "records": "342",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Abdeaitali",
    "wikidata": "Q1754",
    "coordinates": "Point(18.068611111 59.329444444)",
    "records": "325",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Daramlagon",
    "wikidata": "Q2207",
    "coordinates": "Point(123.166666666 13.616666666)",
    "records": "323",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aioramu",
    "wikidata": "Q10313",
    "coordinates": "Point(-1.98 43.32)",
    "records": "322",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jjamesryan",
    "wikidata": "Q34932",
    "coordinates": "Point(153.027777777 -27.467777777)",
    "records": "320",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Salgo60",
    "wikidata": "Q1754",
    "coordinates": "Point(18.068611111 59.329444444)",
    "records": "315",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Tamahashi",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "308",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Zekai Wu",
    "wikidata": "Q16666",
    "coordinates": "Point(118.766666666 32.05)",
    "records": "305",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rachid Hamatou",
    "wikidata": "Q338844",
    "coordinates": "Point(6.166666666 35.55)",
    "records": "305",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Déwata Cengkar",
    "wikidata": "Q3741",
    "coordinates": "Point(110.364444444 -7.801388888)",
    "records": "303",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Carma citrawati",
    "wikidata": "Q3125978",
    "coordinates": "Point(115.0 -8.5)",
    "records": "302",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Idhurar",
    "wikidata": "Q262",
    "coordinates": "Point(1.0 28.0)",
    "records": "297",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Berrely",
    "wikidata": "Q84",
    "coordinates": "Point(-0.1275 51.507222222)",
    "records": "297",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Mathieu Denel WMFr",
    "wikidata": "Q457",
    "coordinates": "Point(2.044722222 48.928888888)",
    "records": "293",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines1",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines2",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines3",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines4",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines5",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aemines6",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "291",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ash Crow",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "287",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Idéalités",
    "wikidata": "Q3420451",
    "coordinates": "Point(-73.7167 46.05)",
    "records": "286",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "MiguelAlanCS",
    "wikidata": "Q8356",
    "coordinates": "Point(-4.728561111 41.651980555)",
    "records": "283",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Justinrleung",
    "wikidata": "Q1904",
    "coordinates": "Point(-85.0 50.0)",
    "records": "278",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rodrigo5260",
    "wikidata": "Q2868",
    "coordinates": "Point(-77.0375 -12.06)",
    "records": "277",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Julien Baley",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "275",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Infovarius",
    "wikidata": "Q915",
    "coordinates": "Point(56.248888888 58.013888888)",
    "records": "271",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Antoine",
    "wikidata": "Q147987",
    "coordinates": "Point(7.473611111 48.102222222)",
    "records": "267",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Guergana",
    "wikidata": "Q64",
    "coordinates": "Point(13.383333333 52.516666666)",
    "records": "260",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Eavqwiki",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "260",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Loumaju",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "256",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Marxav",
    "wikidata": "Q3349",
    "coordinates": "Point(-2.833333333 48.333333333)",
    "records": "236",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rachmat04",
    "wikidata": "Q5722",
    "coordinates": "Point(96.6 5.083333333)",
    "records": "235",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ALFREDAZASEGLA",
    "wikidata": "Q962",
    "coordinates": "Point(2.183333333 8.833333333)",
    "records": "222",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Roll-Morton",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "217",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Morielijah",
    "wikidata": "Q312209",
    "coordinates": "Point(9.233333333 4.166666666)",
    "records": "217",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "QueerEcofeminist",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "215",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bicolino34",
    "wikidata": "Q173407",
    "coordinates": "Point(25.559722222 49.393055555)",
    "records": "214",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Lirazelf",
    "wikidata": "Q22",
    "coordinates": "Point(-5.0 57.0)",
    "records": "214",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Seshiru",
    "wikidata": "Q38380",
    "coordinates": "Point(-0.555555555 47.472777777)",
    "records": "211",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Woubster",
    "wikidata": "Q99",
    "coordinates": "Point(-120.0 37.0)",
    "records": "209",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Patsagorn Y.",
    "wikidata": "Q869",
    "coordinates": "Point(101.0 14.0)",
    "records": "208",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nitesh Gill",
    "wikidata": "Q259030",
    "coordinates": "Point(75.17 30.816666666)",
    "records": "208",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Justice Okai-allotey",
    "wikidata": "Q3761",
    "coordinates": "Point(-0.187 5.6037)",
    "records": "208",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "PJLC-Wiki",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "198",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Joseagush",
    "wikidata": "Q11496",
    "coordinates": "Point(115.283333333 -8.466666666)",
    "records": "196",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "val",
    "wikidata": "Q22690",
    "coordinates": "Point(6.176944444 49.119722222)",
    "records": "196",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "PtiBzh",
    "wikidata": "Q12130",
    "coordinates": "Point(-3.0 48.0)",
    "records": "181",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ashoka KG",
    "wikidata": "Q127041",
    "coordinates": "Point(74.880555555 12.870277777)",
    "records": "176",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jagseer S Sidhu",
    "wikidata": "Q625714",
    "coordinates": "Point(75.1 30.6833)",
    "records": "175",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Theklan",
    "wikidata": "Q147774",
    "coordinates": "Point(-2.1748013 43.2863159)",
    "records": "172",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Yiyi",
    "wikidata": "Q1155",
    "coordinates": "Point(8.8518 45.611958333)",
    "records": "170",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Amqui",
    "wikidata": "Q957746",
    "coordinates": "Point(-67.6833 48.5667)",
    "records": "163",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bastenbas (Lingua)",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "163",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Maina Tudu",
    "wikidata": "Q1914546",
    "coordinates": "Point(86.733 21.933)",
    "records": "150",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Louis",
    "wikidata": "Q3240",
    "coordinates": "Point(5.083333333 43.5)",
    "records": "149",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Louis",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "149",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Meghanee Gambhir",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "147",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Shisma",
    "wikidata": "Q64",
    "coordinates": "Point(13.383333333 52.516666666)",
    "records": "146",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Shilpa Bhat N H",
    "wikidata": "Q127041",
    "coordinates": "Point(74.880555555 12.870277777)",
    "records": "145",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Tokçon",
    "wikidata": "Q142271",
    "coordinates": "Point(-73.816666666 45.45)",
    "records": "144",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Fralambert",
    "wikidata": "Q44012",
    "coordinates": "Point(-72.55 46.35)",
    "records": "144",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Harmonia Amanda",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "143",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Gwikor Frank",
    "wikidata": "Q10690",
    "coordinates": "Point(-3.179166666 51.481666666)",
    "records": "139",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Simon Villeneuve",
    "wikidata": "Q952269",
    "coordinates": "Point(-71.059166666 48.427777777)",
    "records": "137",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ChoumX",
    "wikidata": "Q582",
    "coordinates": "Point(4.879444444 45.766111111)",
    "records": "136",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Matarimi1",
    "wikidata": "Q3659",
    "coordinates": "Point(15.05 12.11)",
    "records": "133",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Williewallie",
    "wikidata": "Q26555",
    "coordinates": "Point(5.666666666 52.05)",
    "records": "130",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ekane",
    "wikidata": "Q209086",
    "coordinates": "Point(2.407222222 48.898055555)",
    "records": "130",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Pranavshivakumar",
    "wikidata": "Q127041",
    "coordinates": "Point(74.880555555 12.870277777)",
    "records": "129",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "OrangeFlu",
    "wikidata": "Q19660",
    "coordinates": "Point(26.083333333 44.4)",
    "records": "129",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Christophe Barume Masirika",
    "wikidata": "Q222279",
    "coordinates": "Point(28.842777777 -2.490833333)",
    "records": "129",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Christophe Barume Masirika",
    "wikidata": "Q222279",
    "coordinates": "Point(28.866666666 -2.5)",
    "records": "129",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Tashi",
    "wikidata": "Q102317",
    "coordinates": "Point(20.631944444 50.8725)",
    "records": "127",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Baidax",
    "wikidata": "Q182872",
    "coordinates": "Point(2.701666666 48.408888888)",
    "records": "122",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Joy sagar Murmu",
    "wikidata": "Q1164",
    "coordinates": "Point(93.0 26.0)",
    "records": "122",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Kiminou1",
    "wikidata": "Q18678082",
    "coordinates": "Point(-0.5888 44.8366)",
    "records": "121",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "GAllegre",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "120",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Loizbec",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "116",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Zupanurska",
    "wikidata": "Q604194",
    "coordinates": "Point(14.172078 46.342517)",
    "records": "116",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "KrystjanM",
    "wikidata": "Q3808",
    "coordinates": "Point(11.518055555 3.857777777)",
    "records": "112",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Abakar B",
    "wikidata": "Q657",
    "coordinates": "Point(19.4 15.466667)",
    "records": "109",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Yug",
    "wikidata": "Q1104449",
    "coordinates": "Point(0.105 44.467777777)",
    "records": "106",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bilbo40",
    "wikidata": "Q16",
    "coordinates": "Point(-109.0 56.0)",
    "records": "106",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Misnograder",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "105",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Sushant savla",
    "wikidata": "Q1156",
    "coordinates": "Point(72.8775 19.075833333)",
    "records": "103",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Tsaag Valren",
    "wikidata": "Q71500",
    "coordinates": "Point(-2.548333333 47.955833333)",
    "records": "101",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "GeoMechain",
    "wikidata": "Q6441",
    "coordinates": "Point(3.877230555 43.610919444)",
    "records": "101",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bal Pesino",
    "wikidata": "Q928",
    "coordinates": "Point(123.0 12.0)",
    "records": "100",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Froggyspeak92",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "100",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Mathsou",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "100",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Elix",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "100",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "SpringProof",
    "wikidata": "Q65",
    "coordinates": "Point(-118.24368 34.05223)",
    "records": "99",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vanbasten 23",
    "wikidata": "Q909707",
    "coordinates": "Point(-3.005555555 43.310833333)",
    "records": "98",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Benoit Rochon",
    "wikidata": "Q2304022",
    "coordinates": "Point(-74.983333333 46.433333333)",
    "records": "97",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Mah3110",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "95",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "नीलिमा रास्ते",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "94",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ngeorges05",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "94",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Cantons-de-l'Est",
    "wikidata": "Q139473",
    "coordinates": "Point(-71.9 45.4)",
    "records": "94",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "LurKin",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "93",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bastenbas",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "92",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Wenyam",
    "wikidata": "Q773547",
    "coordinates": "Point(-1.512222 12.353056)",
    "records": "89",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Toniher",
    "wikidata": "Q1492",
    "coordinates": "Point(2.176944444 41.3825)",
    "records": "88",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ivanhercaz",
    "wikidata": "Q178925",
    "coordinates": "Point(-15.5925 27.958611111)",
    "records": "87",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "MahmoudM",
    "wikidata": "Q1218",
    "coordinates": "Point(35.216666666 31.783333333)",
    "records": "87",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Robby",
    "wikidata": "Q16050",
    "coordinates": "Point(6.156666666 49.868055555)",
    "records": "86",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "CDC-CONNEXION",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "86",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jovan.kostov",
    "wikidata": "Q6441",
    "coordinates": "Point(3.877230555 43.610919444)",
    "records": "84",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Matlin",
    "wikidata": "Q47554",
    "coordinates": "Point(18.616666666 53.016666666)",
    "records": "84",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Hatokun24",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "80",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aseel Abdulrahman",
    "wikidata": "Q3805",
    "coordinates": "Point(35.933333333 31.95)",
    "records": "79",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "CamelCaseNick",
    "wikidata": "Q1055",
    "coordinates": "Point(10.0 53.55)",
    "records": "79",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Clivetanyi",
    "wikidata": "Q312209",
    "coordinates": "Point(9.233333333 4.166666666)",
    "records": "76",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ijon",
    "wikidata": "Q801",
    "coordinates": "Point(35.0 31.0)",
    "records": "73",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Mahesh2582",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "70",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Axdae",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "70",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rocky 734",
    "wikidata": "Q22048",
    "coordinates": "Point(85.5 20.15)",
    "records": "70",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "NKUATE",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "70",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vampiro",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "67",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Kitel WP",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "67",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "AseelF",
    "wikidata": "Q3805",
    "coordinates": "Point(35.933333333 31.95)",
    "records": "67",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Unuaiga",
    "wikidata": "Q132671",
    "coordinates": "Point(-0.37 43.300833333)",
    "records": "67",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Oby Ezeilo",
    "wikidata": "Q3787",
    "coordinates": "Point(7.491388888 9.055555555)",
    "records": "67",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Sebleouf",
    "wikidata": "Q463",
    "coordinates": "Point(4.819447222 45.740186111)",
    "records": "66",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Wozan",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "65",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "NonoDarko",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "65",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Great11",
    "wikidata": "Q340",
    "coordinates": "Point(-73.561666666 45.508888888)",
    "records": "62",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Remux",
    "wikidata": "Q51103",
    "coordinates": "Point(-76.519722222 3.44)",
    "records": "62",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Eihel-LiLi",
    "wikidata": "Q807",
    "coordinates": "Point(6.633333333 46.533333333)",
    "records": "61",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jean",
    "wikidata": "Q219370",
    "coordinates": "Point(-4.235277777 48.437777777)",
    "records": "60",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Greenman",
    "wikidata": "Q5465",
    "coordinates": "Point(18.425 -33.925)",
    "records": "59",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Sunita gambhir",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "59",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Micà",
    "wikidata": "Q679064",
    "coordinates": "Point(-0.213055555 43.191944444)",
    "records": "59",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Culex",
    "wikidata": "Q6643",
    "coordinates": "Point(2.751388888 42.488055555)",
    "records": "56",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "IbrahimZ",
    "wikidata": "Q5776",
    "coordinates": "Point(35.206111111 31.704444444)",
    "records": "55",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Samuel Waina",
    "wikidata": "Q1757",
    "coordinates": "Point(24.93417 60.17556)",
    "records": "54",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "HappyMidnight",
    "wikidata": "Q42082",
    "coordinates": "Point(128.881111111 35.234166666)",
    "records": "51",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ramjit Tudu",
    "wikidata": "Q171771",
    "coordinates": "Point(85.828055555 20.264444444)",
    "records": "50",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Poldjko1",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "49",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Eavq",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "47",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "咽頭べさ",
    "wikidata": "Q818742",
    "coordinates": "Point(97.666666666 16.166666666)",
    "records": "46",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Orikrin1998",
    "wikidata": "Q42716",
    "coordinates": "Point(4.389722222 45.433888888)",
    "records": "46",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Mohau",
    "wikidata": "Q258",
    "coordinates": "Point(24.0 -29.0)",
    "records": "45",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vaishali Kotwal",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "44",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Petrus yh",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "44",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nirpikowan",
    "wikidata": "Q141760",
    "coordinates": "Point(-73.45 46.016666666)",
    "records": "43",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Thibaud379",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "43",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "सुबोध कुलकर्णी",
    "wikidata": "Q270176",
    "coordinates": "Point(74.5 15.866666666)",
    "records": "42",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nisaloj",
    "wikidata": "Q178136",
    "coordinates": "Point(-91.1875 14.773889)",
    "records": "42",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Josette",
    "wikidata": "Q3240",
    "coordinates": "Point(5.083333333 43.5)",
    "records": "42",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Franckk1",
    "wikidata": "Q1008",
    "coordinates": "Point(-6.0 8.0)",
    "records": "42",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bfonkoua7",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "41",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "AmmanM",
    "wikidata": "Q1297",
    "coordinates": "Point(-87.627777777 41.881944444)",
    "records": "41",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "ARYAN MURMU",
    "wikidata": "Q2022279",
    "coordinates": "Point(86.9 21.5)",
    "records": "40",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Anonyme569",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "39",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Susannaanas",
    "wikidata": "Q33",
    "coordinates": "Point(27.0 65.0)",
    "records": "38",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Sujata1963",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "37",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "SabriaDE",
    "wikidata": "Q586",
    "coordinates": "Point(7.099722222 50.733888888)",
    "records": "36",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ericcoul",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "35",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Celestin723",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "34",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bolt Escargot",
    "wikidata": "Q1524",
    "coordinates": "Point(23.728055555 37.984166666)",
    "records": "34",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jiròni B.",
    "wikidata": "Q200202",
    "coordinates": "Point(1.490555555 45.8375)",
    "records": "34",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Claire Hannecart",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "33",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Chavagne",
    "wikidata": "Q1465522",
    "coordinates": "Point(4.295277777 46.706666666)",
    "records": "32",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "fleur",
    "wikidata": "Q214086",
    "coordinates": "Point(6.15 46.2)",
    "records": "32",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Txtdgtl",
    "wikidata": "Q1489",
    "coordinates": "Point(-99.145555555 19.419444444)",
    "records": "31",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rçag",
    "wikidata": "Q3838",
    "coordinates": "Point(15.313888888 -4.331666666)",
    "records": "29",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jon Harald Søby (WMNO)",
    "wikidata": "Q107135",
    "coordinates": "Point(10.95 59.216667)",
    "records": "29",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Otourly",
    "wikidata": "Q208770",
    "coordinates": "Point(4.719722222 45.989444444)",
    "records": "29",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Sujataag",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "28",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Rhosyr358",
    "wikidata": "Q42617191",
    "coordinates": "Point(-4.33333 53.25)",
    "records": "28",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Beat Ruest",
    "wikidata": "Q39",
    "coordinates": "Point(8.231973 46.798562)",
    "records": "28",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Cokewanna",
    "wikidata": "Q159",
    "coordinates": "Point(94.25 66.416666666)",
    "records": "28",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Beusson",
    "wikidata": "Q5705",
    "coordinates": "Point(1.47 41.81)",
    "records": "27",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vickylin77amis",
    "wikidata": "Q1867",
    "coordinates": "Point(121.531944444 25.047777777)",
    "records": "26",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "John.d.new77",
    "wikidata": "Q44989",
    "coordinates": "Point(-95.937222222 36.131388888)",
    "records": "26",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nkuatebea",
    "wikidata": "Q132830",
    "coordinates": "Point(9.7 4.05)",
    "records": "26",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ali",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "26",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Estevoaei",
    "wikidata": "Q12411",
    "coordinates": "Point(-8.6475 42.433611111)",
    "records": "25",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Karol Szapsza",
    "wikidata": "Q36",
    "coordinates": "Point(19.0 52.0)",
    "records": "25",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Elsss10",
    "wikidata": "Q168159",
    "coordinates": "Point(-4.376728 53.293975)",
    "records": "25",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Milo",
    "wikidata": "Q12559",
    "coordinates": "Point(5.716666666 45.183333333)",
    "records": "25",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Emptyfear",
    "wikidata": "Q1953",
    "coordinates": "Point(44.514444444 40.181388888)",
    "records": "25",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Modjou",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "24",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Kemwa Hora Rémy",
    "wikidata": "Q818824",
    "coordinates": "Point(14.327545 10.582321944)",
    "records": "24",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "विशाखा वेलणकर",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "24",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Akoua2021",
    "wikidata": "Q962",
    "coordinates": "Point(2.183333333 8.833333333)",
    "records": "24",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Calab22",
    "wikidata": "Q42617191",
    "coordinates": "Point(-4.33333 53.25)",
    "records": "23",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Michael Schönitzer (WMDE)",
    "wikidata": "Q1726",
    "coordinates": "Point(11.575 48.1375)",
    "records": "23",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Olivier Yao",
    "wikidata": "Q15",
    "coordinates": "Point(7.1881 21.09375)",
    "records": "23",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "रोहिणीरेवती",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "22",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Leonfd1992",
    "wikidata": "Q739",
    "coordinates": "Point(-74.0 4.0)",
    "records": "22",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Henning Schlottmann",
    "wikidata": "Q1726",
    "coordinates": "Point(11.575 48.1375)",
    "records": "22",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "MSa_Eu",
    "wikidata": "Q239",
    "coordinates": "Point(4.351666666 50.846666666)",
    "records": "22",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Llf",
    "wikidata": "Q8646",
    "coordinates": "Point(114.158611111 22.278333333)",
    "records": "21",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jberkel",
    "wikidata": "Q183",
    "coordinates": "Point(10.0 51.0)",
    "records": "21",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Tim Tim (VD fr)",
    "wikidata": "Q184154",
    "coordinates": "Point(-0.77 48.072777777)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Frankdtcheb",
    "wikidata": "Q289267",
    "coordinates": "Point(10.05 5.45)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Cefni1",
    "wikidata": "Q168159",
    "coordinates": "Point(-4.376728 53.293975)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Placide.sogbossi",
    "wikidata": "Q962",
    "coordinates": "Point(2.183333333 8.833333333)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Filipinayzd",
    "wikidata": "Q208749",
    "coordinates": "Point(123.166666666 13.65)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "PRB",
    "wikidata": "Q84",
    "coordinates": "Point(-0.1275 51.507222222)",
    "records": "20",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Florenciac",
    "wikidata": "Q1486",
    "coordinates": "Point(-58.381944444 -34.599722222)",
    "records": "19",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Koffi.noel",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "19",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "S-tel",
    "wikidata": "Q12751",
    "coordinates": "Point(6.333333333 46.0)",
    "records": "18",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Erzianj jurnalist",
    "wikidata": "Q649",
    "coordinates": "Point(37.617777777 55.755833333)",
    "records": "18",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Awel.jones",
    "wikidata": "Q5177811",
    "coordinates": "Point(145.5 -37.416666666)",
    "records": "17",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Amre-Marie",
    "wikidata": "Q1726",
    "coordinates": "Point(11.575 48.1375)",
    "records": "17",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Juindeumilvin",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "17",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Camara aminata",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "16",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Aitzolete",
    "wikidata": "Q1618305",
    "coordinates": "Point(-2.385 43.307222)",
    "records": "16",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nicryc",
    "wikidata": "Q42716",
    "coordinates": "Point(4.389722222 45.433888888)",
    "records": "16",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Masssly",
    "wikidata": "Q3761",
    "coordinates": "Point(-0.187 5.6037)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "VALENTIN NVJ",
    "wikidata": "Q146723",
    "coordinates": "Point(25.191111111 0.515277777)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nurtsio",
    "wikidata": "Q1757",
    "coordinates": "Point(24.93417 60.17556)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Myriam Pied",
    "wikidata": "Q6643",
    "coordinates": "Point(2.751388888 42.488055555)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vij~frwiki",
    "wikidata": "Q211134",
    "coordinates": "Point(5.717777777 45.142777777)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Andrey672",
    "wikidata": "Q649",
    "coordinates": "Point(37.617777777 55.755833333)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jmpmann",
    "wikidata": "Q30",
    "coordinates": "Point(-98.5795 39.828175)",
    "records": "15",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "विदुला",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "14",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Thérèse Ottawa",
    "wikidata": "Q3285285",
    "coordinates": "Point(-74.391666666 47.2225)",
    "records": "14",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Yakshitha",
    "wikidata": "Q127041",
    "coordinates": "Point(74.880555555 12.870277777)",
    "records": "13",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nicolas Lopez de Silanes WMFr",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "13",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Keyomerd",
    "wikidata": "Q693929",
    "coordinates": "Point(40.586111111 37.193888888)",
    "records": "13",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Flavie",
    "wikidata": "Q1479",
    "coordinates": "Point(-0.579444444 44.837777777)",
    "records": "13",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Attention",
    "wikidata": "Q834",
    "coordinates": "Point(7.6 46.066666666)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Wang Cheng",
    "wikidata": "Q1867",
    "coordinates": "Point(121.531944444 25.047777777)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "JEP Visiteur 5",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Fokaczino",
    "wikidata": "Q1799",
    "coordinates": "Point(17.0325 51.11)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Zquad974",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Bile rene",
    "wikidata": "Q818824",
    "coordinates": "Point(14.327545 10.582321944)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Neima Paz",
    "wikidata": "Q739",
    "coordinates": "Point(-74.0 4.0)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Obihoja",
    "wikidata": "Q3787",
    "coordinates": "Point(7.491388888 9.055555555)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Soroor",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Higa4",
    "wikidata": "Q17",
    "coordinates": "Point(136.0 35.0)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Seb35",
    "wikidata": "Q647",
    "coordinates": "Point(-1.680833333 48.114166666)",
    "records": "12",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "JEP Visiteuse 7",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "JEP Visiteuse 9",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "तृप्ती कुलकर्णी",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 14",
    "wikidata": "Q159469",
    "coordinates": "Point(6.3925 45.675833333)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "AB Louis",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vahidmasrour",
    "wikidata": "Q736",
    "coordinates": "Point(-78.0 -1.0)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Saubry",
    "wikidata": "Q869",
    "coordinates": "Point(101.0 14.0)",
    "records": "11",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Anniina",
    "wikidata": "Q1757",
    "coordinates": "Point(24.93417 60.17556)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Jean",
    "wikidata": "Q6730",
    "coordinates": "Point(2.894722222 42.6975)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Dipali S Shende",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Gintek",
    "wikidata": "Q31487",
    "coordinates": "Point(19.937222222 50.061388888)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Nagarajk3762",
    "wikidata": "Q794818",
    "coordinates": "Point(76.38 14.9)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Ropsterkwater",
    "wikidata": "Q47887",
    "coordinates": "Point(5.8625 51.8475)",
    "records": "10",
    "layer": "10-1,000"
  },
  {
    "itemLabel": "Vahagn Petrosyan",
    "wikidata": "Q1953",
    "coordinates": "Point(44.514444444 40.181388888)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "Harditaher",
    "wikidata": "Q7253",
    "coordinates": "Point(100.360556 -0.955556)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "Harditaher",
    "wikidata": "Q7253",
    "coordinates": "Point(100.45 -0.983333333)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "Morvil73",
    "wikidata": "Q46",
    "coordinates": "Point(9.14062 48.690959)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "Allahverdi Verdizade",
    "wikidata": "Q34",
    "coordinates": "Point(15.0 61.0)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "Aah Rix",
    "wikidata": "Q42168",
    "coordinates": "Point(3.086944444 45.779722222)",
    "records": "9",
    "layer": "<10"
  },
  {
    "itemLabel": "SemyonSav",
    "wikidata": "Q900",
    "coordinates": "Point(49.114444444 55.790833333)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Кояш",
    "wikidata": "Q900",
    "coordinates": "Point(49.114444444 55.790833333)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 7",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Koreller",
    "wikidata": "Q12191",
    "coordinates": "Point(-1.553888888 47.217222222)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Gangdhara k b",
    "wikidata": "Q591781",
    "coordinates": "Point(76.49 12.21)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Felixyog",
    "wikidata": "Q1352",
    "coordinates": "Point(80.275 13.0825)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Joe Pig",
    "wikidata": "Q340",
    "coordinates": "Point(-73.561666666 45.508888888)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 19",
    "wikidata": "Q21388",
    "coordinates": "Point(7.683055555 48.5575)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 20",
    "wikidata": "Q22517",
    "coordinates": "Point(7.661111111 48.421944444)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "André Costa (WMSE)",
    "wikidata": "Q34",
    "coordinates": "Point(15.0 61.0)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Abreham97",
    "wikidata": "Q38",
    "coordinates": "Point(12.5 42.5)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Deansfa",
    "wikidata": "Q30",
    "coordinates": "Point(-98.5795 39.828175)",
    "records": "8",
    "layer": "<10"
  },
  {
    "itemLabel": "Neerwan",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Asutosha",
    "wikidata": "Q171771",
    "coordinates": "Point(85.828055555 20.264444444)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 2",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 8",
    "wikidata": "Q760624",
    "coordinates": "Point(1.710833333 48.974166666)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2",
    "wikidata": "Q3148",
    "coordinates": "Point(4.416666666 44.666666666)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Test.odia",
    "wikidata": "Q22048",
    "coordinates": "Point(85.5 20.15)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Tenshi 98",
    "wikidata": "Q386661",
    "coordinates": "Point(139.491111111 35.338833333)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 13",
    "wikidata": "Q22639",
    "coordinates": "Point(7.749166666 48.606944444)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 17",
    "wikidata": "Q22639",
    "coordinates": "Point(7.749166666 48.606944444)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Iwan.Aucamp",
    "wikidata": "Q20",
    "coordinates": "Point(11.0 65.0)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Arokatan",
    "wikidata": "Q155",
    "coordinates": "Point(-53.0 -14.0)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "VIGNERON",
    "wikidata": "Q647",
    "coordinates": "Point(-1.680833333 48.114166666)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "The Editor's Apprentice",
    "wikidata": "Q12606",
    "coordinates": "Point(-122.0 39.0)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "Ruhan",
    "wikidata": "Q1354",
    "coordinates": "Point(90.394444444 23.728888888)",
    "records": "7",
    "layer": "<10"
  },
  {
    "itemLabel": "JEP Visiteur 8",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 9",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 21",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 22",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Yellowmurri",
    "wikidata": "Q14314",
    "coordinates": "Point(-8.533333333 42.883333333)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Marajozkee",
    "wikidata": "Q1348",
    "coordinates": "Point(88.3638815 22.5726723)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "1Apollinariya1",
    "wikidata": "Q159",
    "coordinates": "Point(94.25 66.416666666)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Demo2021",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 15",
    "wikidata": "Q21454",
    "coordinates": "Point(7.863611111 48.783888888)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 18",
    "wikidata": "Q22660",
    "coordinates": "Point(7.714444444 48.524722222)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 21",
    "wikidata": "Q22888",
    "coordinates": "Point(7.578611111 48.877777777)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Adrijaned",
    "wikidata": "Q213",
    "coordinates": "Point(16.0 49.5)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Sélim95",
    "wikidata": "Q380514",
    "coordinates": "Point(3.007222222 42.705555555)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "lilou66",
    "wikidata": "Q450961",
    "coordinates": "Point(2.981666666 42.639722222)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Nagore Irastorza",
    "wikidata": "Q1441329",
    "coordinates": "Point(-1.9749167 43.2661645)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "enzo06",
    "wikidata": "Q6730",
    "coordinates": "Point(2.894722222 42.6975)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Jamel66",
    "wikidata": "Q6730",
    "coordinates": "Point(2.894722222 42.6975)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "liaa71",
    "wikidata": "Q8970",
    "coordinates": "Point(2.942777777 42.680555555)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "AndiPersti",
    "wikidata": "Q40",
    "coordinates": "Point(14.0 48.0)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "Laplumechanceuse18",
    "wikidata": "Q34261",
    "coordinates": "Point(-72.338611111 18.5425)",
    "records": "6",
    "layer": "<10"
  },
  {
    "itemLabel": "ZarinkaIM",
    "wikidata": "Q900",
    "coordinates": "Point(49.114444444 55.790833333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Олимпиадница",
    "wikidata": "Q900",
    "coordinates": "Point(49.114444444 55.790833333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Nonovian",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Belkacem77",
    "wikidata": "Q233645",
    "coordinates": "Point(4.058333 36.725)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Jnov2.0",
    "wikidata": "Q1515",
    "coordinates": "Point(-4.026666666 5.336388888)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 3",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 5",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 12",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 26",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Ripunn",
    "wikidata": "Q22502",
    "coordinates": "Point(121.0 23.766666666)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Snizhana Umanets",
    "wikidata": "Q83247",
    "coordinates": "Point(-8.416666666 41.533333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Yuliyudo",
    "wikidata": "Q83247",
    "coordinates": "Point(-8.416666666 41.533333333)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Silke.c.b",
    "wikidata": "Q220",
    "coordinates": "Point(12.482777777 41.893055555)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Michail Angelos Georgoulas",
    "wikidata": "Q39",
    "coordinates": "Point(8.231973 46.798562)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Hubert",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Jésus",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Kévin",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteur Journée 2 - 28",
    "wikidata": "Q21354",
    "coordinates": "Point(7.713611111 48.551111111)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 11",
    "wikidata": "Q22160",
    "coordinates": "Point(7.258333333 48.767777777)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 1",
    "wikidata": "Q22902",
    "coordinates": "Point(7.783888888 48.696388888)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "MaroBos",
    "wikidata": "Q928",
    "coordinates": "Point(123.0 12.0)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Hector",
    "wikidata": "Q11981",
    "coordinates": "Point(4.975277777 45.830277777)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Tom",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Shanagalarama",
    "wikidata": "Q1361",
    "coordinates": "Point(78.474722222 17.361666666)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Trikutdas",
    "wikidata": "Q47916",
    "coordinates": "Point(80.947 26.847)",
    "records": "5",
    "layer": "<10"
  },
  {
    "itemLabel": "Prosiect Wici Mon",
    "wikidata": "Q168159",
    "coordinates": "Point(-4.376728 53.293975)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Zhnka",
    "wikidata": "Q1879573",
    "coordinates": "Point(13.164760826 49.603601071)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Ninovolador",
    "wikidata": "Q2887",
    "coordinates": "Point(-70.666666666 -33.45)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Nikita2018",
    "wikidata": "Q2158520",
    "coordinates": "Point(-72.8 19.783333333)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "WikiGaufrette00",
    "wikidata": "Q7003",
    "coordinates": "Point(5.041944444 47.323055555)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Laurekarell",
    "wikidata": "Q23211647",
    "coordinates": "Point(-3.98169 5.34993)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 25",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Truchas13108",
    "wikidata": "Q65",
    "coordinates": "Point(-118.24368 34.05223)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Tatiana moocit",
    "wikidata": "Q4244555",
    "coordinates": "Point(30.513611111 59.908611111)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Franz.Roos.1955",
    "wikidata": "Q11943",
    "coordinates": "Point(8.656388888 47.413055611)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Namyap",
    "wikidata": "Q18126899",
    "coordinates": "Point(76.592226 8.892785)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Pavsrinivasa",
    "wikidata": "Q1355",
    "coordinates": "Point(77.5912997 12.9791198)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Leolucas1980gmail",
    "wikidata": "Q2844",
    "coordinates": "Point(-47.882777777 -15.793888888)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Imad El Mouak",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Staëlle",
    "wikidata": "Q12709",
    "coordinates": "Point(2.75 42.5)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "LuneMarine",
    "wikidata": "Q214086",
    "coordinates": "Point(6.15 46.2)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Va Milushnikov",
    "wikidata": "Q16150196",
    "coordinates": "Point(37.804166666 48.008888888)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Marion",
    "wikidata": "Q1289",
    "coordinates": "Point(5.726388888 45.186944444)",
    "records": "4",
    "layer": "<10"
  },
  {
    "itemLabel": "Merlin",
    "wikidata": "Q192038",
    "coordinates": "Point(-1.370277777 43.602777777)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Franclyna",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Nékoro Joséphine",
    "wikidata": "Q9737",
    "coordinates": "Point(166.366666666 -22.133333333)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Jun Da",
    "wikidata": "Q1867",
    "coordinates": "Point(121.531944444 25.047777777)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Isabelle Fabriès",
    "wikidata": "Q1369473",
    "coordinates": "Point(2.984444444 42.727777777)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Quentin Giraudon",
    "wikidata": "Q1369473",
    "coordinates": "Point(2.984444444 42.727777777)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "JEP Visiteur 7",
    "wikidata": "Q6602",
    "coordinates": "Point(7.752222222 48.573333333)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Fleuriste du marché",
    "wikidata": "Q6643",
    "coordinates": "Point(2.751388888 42.488055555)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Hervé31",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "PolinaSol",
    "wikidata": "Q83247",
    "coordinates": "Point(-8.416666666 41.533333333)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Kisukononeko",
    "wikidata": "Q31",
    "coordinates": "Point(4.668055555 50.641111111)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "DavicoHM",
    "wikidata": "Q45",
    "coordinates": "Point(-9.183333333 38.7)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Sangianense",
    "wikidata": "Q414",
    "coordinates": "Point(-64.0 -34.0)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "KhawaChenpo",
    "wikidata": "Q956",
    "coordinates": "Point(116.407526 39.90403)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Visiteuse Journée 2 - 24",
    "wikidata": "Q21979",
    "coordinates": "Point(7.027777777 48.996111111)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Dyco77",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Marie D Martel",
    "wikidata": "Q340",
    "coordinates": "Point(-73.561666666 45.508888888)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Yihsiangyang",
    "wikidata": "Q1867",
    "coordinates": "Point(121.531944444 25.047777777)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Jean-Brice64",
    "wikidata": "Q132671",
    "coordinates": "Point(-0.37 43.300833333)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Commander Keane",
    "wikidata": "Q408",
    "coordinates": "Point(137.0 -28.0)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "MirkoRP",
    "wikidata": "Q39",
    "coordinates": "Point(8.231973 46.798562)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Muriloricci",
    "wikidata": "Q803",
    "coordinates": "Point(5.115555555 52.088888888)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "GamissimoYT",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Sezgin İbiş",
    "wikidata": "Q35997",
    "coordinates": "Point(27.13838 38.41273)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Andrey Petrov",
    "wikidata": "Q4244555",
    "coordinates": "Point(30.513611111 59.908611111)",
    "records": "3",
    "layer": "<10"
  },
  {
    "itemLabel": "Rdrg109",
    "wikidata": "Q3321959",
    "coordinates": "Point(-77.0625 -12.070277777)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "AFRO-Haïti",
    "wikidata": "Q790",
    "coordinates": "Point(-72.8 19.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Lmichan",
    "wikidata": "Q1489",
    "coordinates": "Point(-99.145555555 19.419444444)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Ergonomiko",
    "wikidata": "Q5384",
    "coordinates": "Point(49.65 58.6)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "PeterTheOne",
    "wikidata": "Q13298",
    "coordinates": "Point(15.438611111 47.070833333)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Niklitov",
    "wikidata": "Q649",
    "coordinates": "Point(37.617777777 55.755833333)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Waltermas2021",
    "wikidata": "Q739",
    "coordinates": "Point(-74.0 4.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Omshivaprakash",
    "wikidata": "Q1355",
    "coordinates": "Point(77.5912997 12.9791198)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "CapitainAfrika",
    "wikidata": "Q3838",
    "coordinates": "Point(15.313888888 -4.331666666)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "RiLiu",
    "wikidata": "Q14314",
    "coordinates": "Point(-8.533333333 42.883333333)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "D3XT3RY0NuT",
    "wikidata": "Q218",
    "coordinates": "Point(25.0 46.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Heliophilous",
    "wikidata": "Q1348",
    "coordinates": "Point(88.3638815 22.5726723)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Bakerkobe",
    "wikidata": "Q16666",
    "coordinates": "Point(118.766666666 32.05)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Люпинила",
    "wikidata": "Q159",
    "coordinates": "Point(94.25 66.416666666)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Kateregga1",
    "wikidata": "Q3894",
    "coordinates": "Point(32.581111111 0.313611111)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Theogui",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Gaillon27",
    "wikidata": "Q20927",
    "coordinates": "Point(128.6 35.866666666)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "JackPotte",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Justinetto",
    "wikidata": "Q184154",
    "coordinates": "Point(-0.77 48.072777777)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Darmo117",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Antoine l.",
    "wikidata": "Q42716",
    "coordinates": "Point(4.389722222 45.433888888)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Mespevic",
    "wikidata": "Q962",
    "coordinates": "Point(2.183333333 8.833333333)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Meixome",
    "wikidata": "Q12411",
    "coordinates": "Point(-8.6475 42.433611111)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Zoubab",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Bardabub",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "0x010D",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Sascha",
    "wikidata": "Q688539",
    "coordinates": "Point(8.82228 47.22557)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Md Anan Islam",
    "wikidata": "Q2049820",
    "coordinates": "Point(88.15 25.0)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "ᱵᱳᱫᱤ ᱵᱟᱥᱠᱤ",
    "wikidata": "Q7586440",
    "coordinates": "Point(87.66 23.66)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Jayprakash12345",
    "wikidata": "Q668",
    "coordinates": "Point(83.0 22.8)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Orang Bekasi",
    "wikidata": "Q10392",
    "coordinates": "Point(107.0 -6.233333333)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Chinmayee Mishra",
    "wikidata": "Q22048",
    "coordinates": "Point(85.5 20.15)",
    "records": "2",
    "layer": "<10"
  },
  {
    "itemLabel": "Balyozxane",
    "wikidata": "Q693929",
    "coordinates": "Point(40.586111111 37.193888888)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Willylexomil",
    "wikidata": "Q288",
    "coordinates": "Point(0.688333333 47.392777777)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Valerio Bozzolan",
    "wikidata": "Q495",
    "coordinates": "Point(7.7 45.066666666)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "bcl",
    "wikidata": "Q928",
    "coordinates": "Point(123.0 12.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Hérisson grognon",
    "wikidata": "Q6441",
    "coordinates": "Point(3.877230555 43.610919444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Nicroc",
    "wikidata": "Q7880",
    "coordinates": "Point(1.443888888 43.604444444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Ayoub.korichi",
    "wikidata": "Q402825",
    "coordinates": "Point(4.541944444 35.705833333)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Cloud atlas",
    "wikidata": "Q484678",
    "coordinates": "Point(-122.268055555 37.870277777)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Rency Inson Michel",
    "wikidata": "Q997821",
    "coordinates": "Point(-72.3 18.55)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Vami",
    "wikidata": "Q16150196",
    "coordinates": "Point(37.804166666 48.008888888)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Romainbehar",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Aftabuzzaman",
    "wikidata": "Q902",
    "coordinates": "Point(89.866667 24.016667)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "CValcarcel",
    "wikidata": "Q3396150",
    "coordinates": "Point(-8.61333333 42.43833333)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Bluerasberry",
    "wikidata": "Q5083",
    "coordinates": "Point(-122.33207 47.60621)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "SlimaneAmiri",
    "wikidata": "Q46178",
    "coordinates": "Point(5.0 36.6)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Rtnf",
    "wikidata": "Q10392",
    "coordinates": "Point(107.0 -6.233333333)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Louloupalatine",
    "wikidata": "Q39",
    "coordinates": "Point(8.231973 46.798562)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Arha06",
    "wikidata": "Q656",
    "coordinates": "Point(30.316666666 59.95)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Bakuli63",
    "wikidata": "Q1538",
    "coordinates": "Point(73.855287 18.519574)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Roseofsharon7",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Maroxib",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Victorhgsilva",
    "wikidata": "Q155",
    "coordinates": "Point(-53.0 -14.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Билярфорум",
    "wikidata": "Q159",
    "coordinates": "Point(94.25 66.416666666)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Ashton langue",
    "wikidata": "Q172",
    "coordinates": "Point(-79.386666666 43.670277777)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Praveengarlapati",
    "wikidata": "Q1355",
    "coordinates": "Point(77.5912997 12.9791198)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Axel584",
    "wikidata": "Q6548",
    "coordinates": "Point(1.904166666 47.902222222)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Joyeuxbernard587412",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Veeven",
    "wikidata": "Q668",
    "coordinates": "Point(83.0 22.8)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Sarah Krichen WMFr",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Dtchebeba Frankline",
    "wikidata": "Q289267",
    "coordinates": "Point(10.05 5.45)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Choucroute 11",
    "wikidata": "Q2103212",
    "coordinates": "Point(5.5378 50.2081)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Jaskaranq",
    "wikidata": "Q2353293",
    "coordinates": "Point(75.5 30.38)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Jaskaranq",
    "wikidata": "Q2353293",
    "coordinates": "Point(75.55 30.3833)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Tahir Mahadjir",
    "wikidata": "Q657",
    "coordinates": "Point(19.4 15.466667)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Markden24",
    "wikidata": "Q928",
    "coordinates": "Point(123.0 12.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "James Barnett",
    "wikidata": "Q21",
    "coordinates": "Point(-1.0 53.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Jeuwre",
    "wikidata": "Q64",
    "coordinates": "Point(13.383333333 52.516666666)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Seglinglin",
    "wikidata": "Q90",
    "coordinates": "Point(2.351388888 48.856944444)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "ThelmOSO",
    "wikidata": "Q54171",
    "coordinates": "Point(17.9 50.633333333)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Max93600",
    "wikidata": "Q205551",
    "coordinates": "Point(-0.645 44.8425)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Mbdji01",
    "wikidata": "Q142",
    "coordinates": "Point(2.0 47.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Hildepont",
    "wikidata": "Q239",
    "coordinates": "Point(4.351666666 50.846666666)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "ᱥᱟᱹᱜᱩᱱ ᱗",
    "wikidata": "Q7586440",
    "coordinates": "Point(87.66 23.66)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Noé",
    "wikidata": "Q456",
    "coordinates": "Point(4.841388888 45.758888888)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Ahoraes",
    "wikidata": "Q739",
    "coordinates": "Point(-74.0 4.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Eihel-test",
    "wikidata": "Q807",
    "coordinates": "Point(6.633333333 46.533333333)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Yves Madika",
    "wikidata": "Q187593",
    "coordinates": "Point(27.458055555 -11.669722222)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "BOT-Twm Crys",
    "wikidata": "Q25",
    "coordinates": "Point(-3.633333333 52.35)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "Vincent Simar",
    "wikidata": "Q31",
    "coordinates": "Point(4.668055555 50.641111111)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "nclm",
    "wikidata": "Q35",
    "coordinates": "Point(10.0 56.0)",
    "records": "1",
    "layer": "<10"
  },
  {
    "itemLabel": "VisbyStar",
    "wikidata": "Q54757",
    "coordinates": "Point(18.307108945 57.628997457)",
    "records": "1",
    "layer": "<10"
  }
]